This is a summary of the AI-generated 10-question deep analysis. The full version (longer answers, follow-up Q&A, related CVEs) requires login. Read the full analysis β
Q1What is this vulnerability? (Essence + Consequences)
π¨ **Essence**: SQL Injection in `wp-google-maps` plugin. <br>π₯ **Consequences**: Attackers can steal sensitive DB data, modify records, or run unauthorized admin commands. Itβs a classic input validation failure.
Q2Root Cause? (CWE/Flaw)
π‘οΈ **Root Cause**: CWE-89 (SQL Injection). <br>π **Flaw**: The file `includes/class.rest-api.php` fails to sanitize **field names** before using them in a `SELECT` statement. Dirty input = Dirty SQL.
Q3Who is affected? (Versions/Components)
π¦ **Affected**: WordPress sites using `wp-google-maps`. <br>π **Version**: Any version **before 7.11.18**. <br>π§ **Component**: The REST API integration class.
Q4What can hackers do? (Privileges/Data)
π΅οΈ **Attacker Actions**: <br>1. Extract sensitive info from the database. <br>2. Modify existing data. <br>3. Execute unauthorized admin operations. <br>π **Privileges**: Context of the affected site (often high impact).
Q5Is exploitation threshold high? (Auth/Config)
β‘ **Threshold**: Medium/Low. <br>π **Auth**: Requires access to the REST API endpoint. <br>βοΈ **Config**: Plugin must be active and unpatched. No complex setup needed, just a vulnerable endpoint.
Q6Is there a public Exp? (PoC/Wild Exploitation)
π₯ **Exploitation**: YES. <br>π **PoC**: Available via Nuclei templates and PacketStorm. <br>π **Wild Exploit**: Rapid7 module exists (`auxiliary/admin/http/wp_google_maps_sqli`). Itβs weaponized.
Q7How to self-check? (Features/Scanning)
π **Self-Check**: <br>1. Scan for `wp-google-maps` plugin. <br>2. Check version number (< 7.11.18). <br>3. Use Nuclei template `CVE-2019-10692.yaml` for automated detection. <br>4. Look for unsanitized REST API calls.
π§ **No Patch?**: <br>1. **Disable** the plugin immediately if not needed. <br>2. **Restrict** access to `/wp-json/` endpoints via WAF. <br>3. **Monitor** logs for SQL injection patterns in REST API traffic.
Q10Is it urgent? (Priority Suggestion)
π¨ **Urgency**: HIGH. <br>π **Priority**: Patch ASAP. <br>π‘ **Why**: Public exploits exist, it affects data integrity, and itβs an old vulnerability (2019) that many legacy sites still run. Donβt wait!