CVE-2024-13491

7.5 HIGH

📋 TL;DR

This SQL injection vulnerability in the Small Package Quotes – For Customers of FedEx WordPress plugin allows unauthenticated attackers to inject malicious SQL queries through the 'edit_id' and 'dropship_edit_id' parameters. Attackers can extract sensitive database information including user credentials, plugin settings, and potentially other WordPress data. All WordPress sites using this plugin up to version 4.3.1 are affected.

💻 Affected Systems

Products:
  • Small Package Quotes – For Customers of FedEx WordPress plugin
Versions: All versions up to and including 4.3.1
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires plugin to be installed and active. No special configuration needed for exploitation.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete database compromise leading to credential theft, data exfiltration, privilege escalation, and potential site takeover.

🟠

Likely Case

Extraction of sensitive plugin data, user information, and potential access to WordPress user tables.

🟢

If Mitigated

Limited information disclosure if database permissions are properly restricted and WAF blocks injection attempts.

🌐 Internet-Facing: HIGH - Unauthenticated exploitation makes this easily accessible to any internet user.
🏢 Internal Only: MEDIUM - Internal attackers could still exploit, but attack surface is reduced.

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

Unauthenticated exploitation with simple parameter manipulation. No authentication required.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version 4.3.2 or later

Vendor Advisory: https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&old=3242108%40small-package-quotes-fedex-edition&new=3242108%40small-package-quotes-fedex-edition&sfp_email=&sfph_mail=

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Small Package Quotes – For Customers of FedEx'. 4. Click 'Update Now' if available. 5. If no update appears, manually download version 4.3.2+ from WordPress.org and replace plugin files.

🔧 Temporary Workarounds

Temporary Plugin Deactivation

WordPress

Disable the vulnerable plugin until patched

wp plugin deactivate small-package-quotes-fedex-edition

WAF Rule Implementation

all

Block SQL injection patterns targeting edit_id and dropship_edit_id parameters

🧯 If You Can't Patch

  • Disable the plugin immediately via WordPress admin or wp-cli
  • Implement strict WAF rules to block SQL injection patterns and monitor for exploitation attempts

🔍 How to Verify

Check if Vulnerable:

Check plugin version in WordPress admin under Plugins → Installed Plugins. If version is 4.3.1 or lower, you are vulnerable.

Check Version:

wp plugin get small-package-quotes-fedex-edition --field=version

Verify Fix Applied:

Verify plugin version is 4.3.2 or higher. Test parameter inputs with SQL injection payloads to confirm they are properly sanitized.

📡 Detection & Monitoring

Log Indicators:

  • Unusual SQL errors in WordPress debug logs
  • Multiple requests with SQL keywords in edit_id/dropship_edit_id parameters
  • Database query errors from the plugin

Network Indicators:

  • HTTP requests containing SQL injection patterns in GET/POST parameters
  • Unusual database connection patterns from web server

SIEM Query:

source="wordpress.log" AND ("edit_id" OR "dropship_edit_id") AND ("UNION" OR "SELECT" OR "INSERT" OR "UPDATE" OR "DELETE" OR "--" OR "' OR '1'='1")

🔗 References

📤 Share & Export