CVE-2025-14075

5.3 MEDIUM

📋 TL;DR

The WP Hotel Booking WordPress plugin exposes sensitive customer information to unauthenticated attackers. By providing a valid email address and a publicly accessible nonce, attackers can retrieve full names, addresses, phone numbers, and email addresses. All WordPress sites using WP Hotel Booking version 2.2.7 or earlier are affected.

💻 Affected Systems

Products:
  • WP Hotel Booking WordPress plugin
Versions: All versions up to and including 2.2.7
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: All WordPress installations with vulnerable plugin versions are affected regardless of configuration.

⚠️ Manual Verification Required

This CVE does not have specific version information in our database, so automatic vulnerability detection cannot determine if your system is affected.

Why? The CVE database entry doesn't specify which versions are vulnerable (no version ranges provided by the vendor/NVD).

🔒 Custom verification scripts are available for registered users. Sign up free to download automated test scripts.

Recommended Actions:
  1. Review the CVE details at NVD
  2. Check vendor security advisories for your specific version
  3. Test if the vulnerability is exploitable in your environment
  4. Consider updating to the latest version as a precaution

⚠️ Risk & Real-World Impact

🔴

Worst Case

Mass data breach exposing all customer PII (names, addresses, phone numbers, emails) leading to identity theft, phishing campaigns, and regulatory fines.

🟠

Likely Case

Targeted data harvesting of customer information for spam, phishing, or credential stuffing attacks.

🟢

If Mitigated

Limited exposure if nonces are not publicly accessible, but risk remains due to weak authentication design.

🌐 Internet-Facing: HIGH
🏢 Internal Only: LOW

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: LIKELY
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

Exploitation requires only a valid email address and nonce, both often publicly accessible in WordPress.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 2.2.8 or later

Vendor Advisory: 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=

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find WP Hotel Booking and click 'Update Now'. 4. Verify version is 2.2.8 or higher.

🔧 Temporary Workarounds

Disable vulnerable AJAX endpoint

all

Remove or restrict access to the 'hotel_booking_fetch_customer_info' AJAX action via .htaccess or plugin modification.

# Add to .htaccess:
<Files "class-wphb-ajax.php">
    Order Allow,Deny
    Deny from all
</Files>

🧯 If You Can't Patch

  • Disable WP Hotel Booking plugin immediately until patched.
  • Implement web application firewall (WAF) rules to block requests to 'hotel_booking_fetch_customer_info' endpoint.

🔍 How to Verify

Check if Vulnerable:

Check plugin version in WordPress admin under Plugins > Installed Plugins. If WP Hotel Booking is version 2.2.7 or earlier, it's vulnerable.

Check Version:

wp plugin list --name="WP Hotel Booking" --field=version

Verify Fix Applied:

After update, confirm plugin version shows 2.2.8 or higher in WordPress admin.

📡 Detection & Monitoring

Log Indicators:

  • HTTP POST requests to /wp-admin/admin-ajax.php with action=hotel_booking_fetch_customer_info from unauthenticated IPs
  • Unusual volume of admin-ajax.php requests

Network Indicators:

  • POST requests to admin-ajax.php with 'hotel_booking_fetch_customer_info' parameter

SIEM Query:

source="web_logs" AND uri="/wp-admin/admin-ajax.php" AND post_data="hotel_booking_fetch_customer_info" AND user_agent NOT CONTAINS "WordPress"

🔗 References

📤 Share & Export