CVE-2025-67945
📋 TL;DR
This SQL injection vulnerability in the MailerLite WooCommerce integration plugin allows attackers to execute arbitrary SQL commands on the WordPress database. It affects all WooCommerce sites using the MailerLite plugin version 3.1.2 or earlier. Successful exploitation could lead to data theft, modification, or complete database compromise.
💻 Affected Systems
- MailerLite - WooCommerce integration (woo-mailerlite)
⚠️ 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
Complete database compromise including sensitive customer data (PII, payment info), privilege escalation to admin, and potential site takeover.
Likely Case
Data exfiltration of customer information, order history, and potentially stored payment data if not properly encrypted.
If Mitigated
Limited impact if database permissions are restricted and input validation is enforced elsewhere.
🎯 Exploit Status
SQL injection vulnerabilities in WordPress plugins are commonly exploited quickly after disclosure.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: >3.1.2
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'MailerLite - WooCommerce integration'. 4. Click 'Update Now' if available. 5. If no update appears, manually download latest version from WordPress repository and replace plugin files.
🔧 Temporary Workarounds
Disable vulnerable plugin
allTemporarily disable the MailerLite WooCommerce integration plugin until patched.
wp plugin deactivate woo-mailerlite
Web Application Firewall (WAF)
allDeploy WAF rules to block SQL injection patterns targeting this plugin.
🧯 If You Can't Patch
- Implement strict input validation and parameterized queries in custom code
- Restrict database user permissions to minimum required operations
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin panel > Plugins > Installed Plugins for MailerLite - WooCommerce integration version.
Check Version:
wp plugin get woo-mailerlite --field=version
Verify Fix Applied:
Confirm plugin version is >3.1.2 in WordPress admin panel.
📡 Detection & Monitoring
Log Indicators:
- Unusual SQL queries in WordPress/database logs
- Multiple failed login attempts from single IP
- Unexpected database schema changes
Network Indicators:
- HTTP requests with SQL syntax in parameters to WooCommerce/MailerLite endpoints
- Unusual outbound database connections
SIEM Query:
source="wordpress.log" AND "woo-mailerlite" AND ("SELECT" OR "UNION" OR "INSERT" OR "UPDATE" OR "DELETE")