CVE-2025-24665
📋 TL;DR
This SQL injection vulnerability in Eniture Technology's Small Package Quotes – Unishippers Edition WordPress plugin allows attackers to execute arbitrary SQL commands on the database. All WordPress sites using this plugin version 2.4.8 or earlier are affected, potentially compromising sensitive data.
💻 Affected Systems
- Small Package Quotes – Unishippers Edition 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
Complete database compromise leading to data theft, data manipulation, privilege escalation, and potential remote code execution via database functions.
Likely Case
Unauthorized access to sensitive data including user information, shipping details, and potentially administrative credentials stored in the database.
If Mitigated
Limited impact with proper input validation and parameterized queries in place, potentially only affecting non-sensitive data.
🎯 Exploit Status
SQL injection vulnerabilities are commonly exploited and weaponized quickly once details become public.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: 2.4.9 or later
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Small Package Quotes – Unishippers Edition'. 4. Click 'Update Now' if available. 5. Alternatively, download latest version from WordPress repository and replace plugin files.
🔧 Temporary Workarounds
Temporary Plugin Deactivation
allDisable the vulnerable plugin until patched
wp plugin deactivate small-package-quotes-unishippers-edition
Web Application Firewall Rules
allImplement WAF rules to block SQL injection patterns targeting the plugin
🧯 If You Can't Patch
- Implement strict input validation and parameterized queries in custom code
- Restrict database user permissions to minimum required access
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin panel → Plugins → Installed Plugins for 'Small Package Quotes – Unishippers Edition' version 2.4.8 or earlier
Check Version:
wp plugin get small-package-quotes-unishippers-edition --field=version
Verify Fix Applied:
Verify plugin version is 2.4.9 or later in WordPress admin panel
📡 Detection & Monitoring
Log Indicators:
- Unusual SQL queries in database logs
- Multiple failed login attempts from single IP
- Unexpected database schema changes
Network Indicators:
- HTTP requests with SQL syntax in parameters
- Unusual traffic patterns to plugin endpoints
SIEM Query:
source="web_server" AND (uri="*wp-content/plugins/small-package-quotes*" AND (param="*SELECT*" OR param="*UNION*" OR param="*OR 1=1*"))