CVE-2025-30891
📋 TL;DR
This vulnerability allows attackers to include local files on the server through improper filename control in PHP's include/require statements. It affects WordPress sites running the WpTravelly plugin (also called Tour Booking Manager) from any version up to 1.8.7. Attackers can potentially read sensitive files or execute arbitrary code.
💻 Affected Systems
- WpTravelly (Tour Booking Manager) 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
Remote code execution leading to complete server compromise, data theft, and website defacement.
Likely Case
Local file inclusion allowing reading of sensitive configuration files (wp-config.php), database credentials, and other server files.
If Mitigated
Limited file access within web root directory if proper file permissions are configured.
🎯 Exploit Status
Exploitation requires understanding of PHP file inclusion vulnerabilities and WordPress plugin structure.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: Version after 1.8.7 (check for updates)
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'WpTravelly' or 'Tour Booking Manager'. 4. Click 'Update Now' if available. 5. If no update appears, deactivate and delete the plugin immediately.
🔧 Temporary Workarounds
Disable vulnerable plugin
WordPressDeactivate the WpTravelly plugin to eliminate the vulnerability
wp plugin deactivate tour-booking-manager
Restrict PHP file inclusion
PHPConfigure PHP to disable allow_url_include and restrict open_basedir
allow_url_include = Off
open_basedir = /var/www/html
🧯 If You Can't Patch
- Deactivate and remove the WpTravelly plugin immediately
- Implement web application firewall (WAF) rules to block file inclusion patterns
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin panel > Plugins > Installed Plugins for WpTravelly version 1.8.7 or earlier
Check Version:
wp plugin get tour-booking-manager --field=version
Verify Fix Applied:
Verify plugin version is higher than 1.8.7 or plugin is completely removed
📡 Detection & Monitoring
Log Indicators:
- Unusual file access patterns in PHP error logs
- Requests containing '..' or file inclusion patterns in access logs
Network Indicators:
- HTTP requests with file inclusion parameters to plugin endpoints
SIEM Query:
source="web_logs" AND (uri="*wp-content/plugins/tour-booking-manager/*" AND (param="*..*" OR param="*include*" OR param="*require*"))