CVE-2025-60168

7.1 HIGH

📋 TL;DR

This CVE describes a Cross-Site Request Forgery (CSRF) vulnerability in the HotelRunner Booking Widget WordPress plugin that allows attackers to inject malicious scripts via stored XSS. When exploited, it enables attackers to perform unauthorized actions on behalf of authenticated users. This affects WordPress sites using the HotelRunner Booking Widget plugin version 1.6 and earlier.

💻 Affected Systems

Products:
  • HotelRunner Booking Widget WordPress Plugin
Versions: <= 1.6
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with the vulnerable plugin activated. The plugin must be accessible to users with booking capabilities.

⚠️ 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

Attackers could inject persistent malicious scripts that steal session cookies, redirect users to phishing sites, or perform administrative actions on the WordPress site without authorization.

🟠

Likely Case

Attackers trick authenticated users into clicking malicious links that modify plugin settings or inject malicious content into booking forms visible to other users.

🟢

If Mitigated

With proper CSRF tokens and input validation, the vulnerability would be prevented, limiting impact to failed exploitation attempts.

🌐 Internet-Facing: HIGH
🏢 Internal Only: LOW

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: LOW

Exploitation requires tricking authenticated users into visiting malicious pages. No public exploit code is currently available.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: >1.6

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/hotelrunner/vulnerability/wordpress-hotelrunner-booking-widget-plugin-1-6-cross-site-request-forgery-csrf-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find HotelRunner Booking Widget. 4. Click 'Update Now' if available. 5. Alternatively, download latest version from WordPress repository and replace plugin files.

🔧 Temporary Workarounds

Temporary Plugin Deactivation

all

Disable the vulnerable plugin until patched version is available

wp plugin deactivate hotelrunner

CSRF Protection Implementation

all

Add custom CSRF tokens to plugin forms via custom code or security plugin

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block CSRF attempts targeting the plugin endpoints
  • Restrict plugin access to trusted IP addresses only using .htaccess or server configuration

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > HotelRunner Booking Widget version number. If version is 1.6 or lower, system is vulnerable.

Check Version:

wp plugin get hotelrunner --field=version

Verify Fix Applied:

After update, verify plugin version shows >1.6 in WordPress admin plugins page. Test booking widget functionality remains working.

📡 Detection & Monitoring

Log Indicators:

  • Multiple failed CSRF token validations from same IP
  • Unexpected modifications to plugin settings or booking form content

Network Indicators:

  • HTTP POST requests to hotelrunner plugin endpoints without proper referrer headers or CSRF tokens

SIEM Query:

source="wordpress.log" AND ("hotelrunner" AND "csrf") OR ("booking_widget" AND "unauthorized")

🔗 References

📤 Share & Export