CVE-2026-1945
📋 TL;DR
The WPBookit WordPress plugin has a stored cross-site scripting vulnerability that allows unauthenticated attackers to inject malicious scripts into web pages. When users visit compromised pages, the scripts execute in their browsers, potentially stealing credentials or performing unauthorized actions. All WordPress sites using WPBookit version 1.0.8 or earlier are affected.
💻 Affected Systems
- WPBookit WordPress Plugin
⚠️ 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.
- Review the CVE details at NVD
- Check vendor security advisories for your specific version
- Test if the vulnerability is exploitable in your environment
- Consider updating to the latest version as a precaution
⚠️ Risk & Real-World Impact
Worst Case
Attackers could steal administrator credentials, take over the WordPress site, install backdoors, deface the site, or redirect visitors to malicious sites.
Likely Case
Attackers inject malicious JavaScript to steal user session cookies, redirect users to phishing pages, or display unwanted advertisements.
If Mitigated
With proper input validation and output escaping, the vulnerability would be prevented, and only sanitized data would be displayed to users.
🎯 Exploit Status
The vulnerability is straightforward to exploit by submitting malicious scripts through the vulnerable parameters, and proof-of-concept details are publicly available in the references.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: Version after 1.0.8
Vendor Advisory: https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&old=3467556%40wpbookit&new=3467556%40wpbookit&sfp_email=&sfph_mail=
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find WPBookit plugin. 4. Click 'Update Now' if update is available. 5. If no update appears, manually download latest version from WordPress plugin repository and replace existing files.
🔧 Temporary Workarounds
Disable WPBookit Plugin
allTemporarily disable the vulnerable plugin until patched.
wp plugin deactivate wpbookit
Apply Input Sanitization Filter
allAdd custom WordPress filter to sanitize wpb_user_name and wpb_user_email parameters.
Add to theme's functions.php: add_filter('preprocess_wpb_user_name', 'esc_html'); add_filter('preprocess_wpb_user_email', 'sanitize_email');
🧯 If You Can't Patch
- Implement a Web Application Firewall (WAF) with XSS protection rules to block malicious payloads.
- Restrict access to the WordPress admin panel and implement strong authentication controls.
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin panel > Plugins > Installed Plugins for WPBookit version 1.0.8 or earlier.
Check Version:
wp plugin get wpbookit --field=version
Verify Fix Applied:
Verify WPBookit plugin version is higher than 1.0.8 in WordPress admin panel.
📡 Detection & Monitoring
Log Indicators:
- Unusual POST requests to booking endpoints with script tags in parameters
- Multiple failed XSS attempts in web server logs
Network Indicators:
- HTTP requests containing <script> tags in wpb_user_name or wpb_user_email parameters
SIEM Query:
source="web_logs" AND (wpb_user_name CONTAINS "<script>" OR wpb_user_email CONTAINS "javascript:")
🔗 References
- https://plugins.trac.wordpress.org/browser/wpbookit/tags/1.0.8/core/admin/classes/controllers/class.wpb-booking-shortcode-controller.php#L534
- https://plugins.trac.wordpress.org/browser/wpbookit/trunk/core/admin/classes/controllers/class.wpb-booking-shortcode-controller.php#L534
- https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&old=3467556%40wpbookit&new=3467556%40wpbookit&sfp_email=&sfph_mail=
- https://www.wordfence.com/threat-intel/vulnerabilities/id/5954c682-c772-420a-a764-342418c1e71c?source=cve