CVE-2025-67516

9.8 CRITICAL

📋 TL;DR

This SQL injection vulnerability in the Agile Logix Store Locator WordPress plugin allows attackers to execute arbitrary SQL commands on the database. It affects all WordPress sites using the vulnerable plugin version, potentially exposing sensitive data like user credentials, payment information, and site content.

💻 Affected Systems

Products:
  • Agile Logix Store Locator WordPress Plugin
Versions: All versions up to and including 1.6.2
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Affects WordPress installations with the vulnerable plugin activated. No special configuration required.

⚠️ 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.

Recommended Actions:
  1. Review the CVE details at NVD
  2. Check vendor security advisories for your specific version
  3. Test if the vulnerability is exploitable in your environment
  4. Consider updating to the latest version as a precaution

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete database compromise leading to data theft, privilege escalation, site defacement, or full system takeover via subsequent attacks.

🟠

Likely Case

Data exfiltration of sensitive information including user credentials, personal data, and administrative access leading to further compromise.

🟢

If Mitigated

Limited impact with proper input validation, parameterized queries, and database permission restrictions in place.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ⚠️ Yes
Weaponized: LIKELY
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

Blind SQL injection allows data extraction through boolean-based or time-based techniques. Exploitation is straightforward with readily available SQL injection tools.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.6.3 or later

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/agile-store-locator/vulnerability/wordpress-store-locator-wordpress-plugin-1-6-2-sql-injection-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'Store Locator WordPress' plugin. 4. Click 'Update Now' if update available. 5. If no update available, deactivate and delete plugin, then install fresh version from WordPress repository.

🔧 Temporary Workarounds

Web Application Firewall (WAF)

all

Deploy a WAF with SQL injection protection rules to block malicious requests.

Database Permission Restriction

linux

Limit database user permissions to only necessary operations (SELECT, INSERT, UPDATE as needed).

REVOKE DROP, CREATE, ALTER, EXECUTE ON database.* FROM 'wordpress_user'@'localhost';

🧯 If You Can't Patch

  • Immediately deactivate and remove the vulnerable plugin from all WordPress installations.
  • Implement strict input validation and parameterized queries in custom code that interacts with the plugin's functionality.

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for 'Store Locator WordPress' version 1.6.2 or earlier.

Check Version:

wp plugin list --name='store-locator-wordpress' --field=version

Verify Fix Applied:

Confirm plugin version is 1.6.3 or later in WordPress admin panel, and test functionality remains working.

📡 Detection & Monitoring

Log Indicators:

  • Unusual SQL error messages in WordPress debug logs
  • Multiple failed login attempts following SQL error patterns
  • Requests with SQL keywords (UNION, SELECT, INSERT) in parameters

Network Indicators:

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

SIEM Query:

source="wordpress.log" AND ("SQL syntax" OR "database error" OR "UNION SELECT")

🔗 References

📤 Share & Export