CVE-2025-10310

4.9 MEDIUM

📋 TL;DR

This SQL injection vulnerability in the Rich Snippet Site Report WordPress plugin allows unauthenticated attackers to execute arbitrary SQL queries against the database. All WordPress sites using this plugin up to version 2.0.0105 are affected, potentially exposing sensitive data like user credentials, site content, and configuration details.

💻 Affected Systems

Products:
  • Rich Snippet Site Report WordPress plugin
Versions: All versions up to and including 2.0.0105
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with the vulnerable plugin activated. The 'last' parameter is vulnerable to SQL injection.

⚠️ 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 if database permissions allow file system access.

🟠

Likely Case

Extraction of sensitive WordPress data including user credentials, plugin configurations, and site content that could enable further attacks.

🟢

If Mitigated

Limited impact with proper database user permissions, but still potential for data leakage from accessible tables.

🌐 Internet-Facing: HIGH
🏢 Internal Only: LOW

🎯 Exploit Status

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

Exploitable via CSRF, making it easier for attackers to trick authenticated users into triggering the vulnerability.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 2.0.0105

Vendor Advisory: https://wordpress.org/plugins/easysnippet/

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'Rich Snippet Site Report' plugin. 4. Click 'Update Now' if update available. 5. If no update available, deactivate and delete the plugin immediately.

🔧 Temporary Workarounds

Temporary Parameter Filtering

WordPress

Add input validation for the 'last' parameter to block SQL injection attempts

Add to theme's functions.php or custom plugin: add_filter('query_vars', function($vars) { if(isset($_GET['last'])) { $_GET['last'] = sanitize_text_field($_GET['last']); } return $vars; });

🧯 If You Can't Patch

  • Immediately deactivate and remove the Rich Snippet Site Report plugin from all WordPress installations
  • Implement WAF rules to block SQL injection patterns targeting the 'last' parameter

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for 'Rich Snippet Site Report' version 2.0.0105 or earlier

Check Version:

wp plugin list --name='Rich Snippet Site Report' --field=version

Verify Fix Applied:

Verify plugin version is higher than 2.0.0105 or plugin is completely removed

📡 Detection & Monitoring

Log Indicators:

  • Unusual SQL queries in WordPress debug logs
  • Multiple requests with SQL-like patterns in 'last' parameter
  • Database error messages containing SQL syntax

Network Indicators:

  • HTTP requests with SQL injection payloads in 'last' parameter
  • Unusual traffic patterns to plugin-specific endpoints

SIEM Query:

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

🔗 References

📤 Share & Export