Security Vulnerability Report
中文
CVE-2026-35071 CVSS 8.2 HIGH

CVE-2026-35071

Published: 2026-05-12 14:17:02
Last Modified: 2026-05-12 19:49:35

Description

Dell PowerScale InsightIQ, versions 6.0.0 through 6.2.0, contains an improper neutralization of special elements used in an OS command ('OS Command Injection') vulnerability. A high privileged attacker with local access could potentially exploit this vulnerability, leading to Command execution.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:dell:insightiq:*:*:*:*:*:*:*:* - VULNERABLE
Dell PowerScale InsightIQ 6.0.0
Dell PowerScale InsightIQ 6.2.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Proof of Concept for CVE-2026-35071 # This script demonstrates a potential OS Command Injection scenario. # It simulates the vulnerable behavior where input is not sanitized. import os def simulate_vulnerable_function(user_input): # The application constructs a command string using untrusted input # This is a conceptual representation of the vulnerability command = "/usr/local/bin/insightiq_tool --config " + user_input print(f"[+] Executing command: {command}") # Vulnerable execution os.system(command) if __name__ == "__main__": print("[*] Exploiting CVE-2026-35071...") # Payload: ; touch /tmp/pwned (creates a file to prove execution) # Or: ; cat /etc/passwd malicious_payload = "valid_config; id" try: simulate_vulnerable_function(malicious_payload) except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-35071", "sourceIdentifier": "[email protected]", "published": "2026-05-12T14:17:02.240", "lastModified": "2026-05-12T19:49:35.160", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Dell PowerScale InsightIQ, versions 6.0.0 through 6.2.0, contains an improper neutralization of special elements used in an OS command ('OS Command Injection') vulnerability. A high privileged attacker with local access could potentially exploit this vulnerability, leading to Command execution."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H", "baseScore": 8.2, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.5, "impactScore": 6.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-78"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:dell:insightiq:*:*:*:*:*:*:*:*", "versionStartIncluding": "6.0.0", "versionEndExcluding": "6.3.0", "matchCriteriaId": "A87317BF-C162-4AD6-9823-D0150BDFD092"}]}]}], "references": [{"url": "https://www.dell.com/support/kbdoc/en-us/000463695/dsa-2026-208-security-update-for-dell-powerscale-insightiq-multiple-vulnerabilities", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}