CVE-2025-7038
📋 TL;DR
The LatePoint WordPress plugin contains an authentication bypass vulnerability that allows unauthenticated attackers to log into any customer account by exploiting insufficient identity verification in an AJAX endpoint. This affects all WordPress sites using LatePoint versions up to 5.1.94. Attackers can impersonate customers and potentially access sensitive booking information.
💻 Affected Systems
- LatePoint 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 gain unauthorized access to all customer accounts, steal personal data, modify bookings, perform financial fraud, and potentially pivot to administrative functions if customer accounts have elevated privileges.
Likely Case
Attackers compromise customer accounts to view personal information, booking history, and potentially make unauthorized bookings or modifications.
If Mitigated
With proper network segmentation and monitoring, impact is limited to the LatePoint application data only, with no lateral movement to other systems.
🎯 Exploit Status
The vulnerability is straightforward to exploit with basic HTTP requests to the vulnerable endpoint.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: 5.1.95 or later
Vendor Advisory: https://wordpress.org/plugins/latepoint/#developers
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find LatePoint plugin. 4. Click 'Update Now' if update is available. 5. Alternatively, download version 5.1.95+ from WordPress repository and manually update.
🔧 Temporary Workarounds
Disable LatePoint Plugin
allTemporarily disable the vulnerable plugin until patched
wp plugin deactivate latepoint
Block Vulnerable Endpoint
linuxAdd web application firewall rule to block access to the vulnerable AJAX endpoint
# Add to .htaccess for Apache:
RewriteCond %{REQUEST_URI} ^/wp-admin/admin-ajax\.php$
RewriteCond %{QUERY_STRING} action=latepoint_route_call [NC]
RewriteCond %{QUERY_STRING} route_name=steps__load_step [NC]
RewriteRule ^ - [F,L]
🧯 If You Can't Patch
- Implement strict network access controls to limit who can access the WordPress admin-ajax.php endpoint
- Enable detailed logging for all authentication attempts and monitor for suspicious activity
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin panel → Plugins → LatePoint → Version. If version is 5.1.94 or lower, you are vulnerable.
Check Version:
wp plugin get latepoint --field=version
Verify Fix Applied:
After updating, verify LatePoint plugin version shows 5.1.95 or higher in WordPress admin panel.
📡 Detection & Monitoring
Log Indicators:
- Multiple POST requests to /wp-admin/admin-ajax.php with 'action=latepoint_route_call' and 'route_name=steps__load_step' from unauthenticated users
- Unusual customer account logins from unexpected IP addresses
Network Indicators:
- HTTP POST requests to admin-ajax.php with latepoint_route_call action and steps__load_step route parameters
SIEM Query:
source="web_logs" AND uri="/wp-admin/admin-ajax.php" AND method="POST" AND query="*action=latepoint_route_call*" AND query="*route_name=steps__load_step*"
🔗 References
- https://plugins.trac.wordpress.org/browser/latepoint/tags/5.1.93/latepoint.php
- https://plugins.trac.wordpress.org/browser/latepoint/tags/5.1.93/lib/controllers/steps_controller.php
- https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&old=3366851%40latepoint&new=3366851%40latepoint&sfp_email=&sfph_mail=
- https://wordpress.org/plugins/latepoint/#developers
- https://www.wordfence.com/threat-intel/vulnerabilities/id/d7389e17-a357-481a-8716-3a93cb6afa7c?source=cve