5 vulnerabilities classified as CWE-363 (允许符号链接跟随的竞争条件). AI Chinese analysis included.
CWE-363 represents a critical logic flaw where software validates a file’s integrity or existence before accessing it, creating a vulnerable window for attackers to substitute the target with a symbolic link. This race condition exploits the temporal gap between the initial check and the subsequent use, allowing malicious actors to redirect the application to unintended resources, such as sensitive system files or configuration data. Developers typically mitigate this risk by employing atomic operations that combine verification and access into a single, indivisible step, thereby eliminating the exploitable interval. Alternatively, using secure file descriptors or locking mechanisms ensures that the resource remains consistent throughout the operation, preventing unauthorized redirection and maintaining the intended security posture against such temporal manipulation attacks.
function readFile($filename){ $user = getCurrentUser(); //resolve file if its a symbolic link if(is_link($filename)){ $filename = readlink($filename); } if(fileowner($filename) == $user){ echo file_get_contents($realFile); return; } else{ echo 'Access denied'; return false; } }| CVE ID | Title | CVSS | Severity | Published |
|---|---|---|---|---|
| CVE-2025-13492 | HP Image Assistant - Potential Escalation of Privilege — HP Image Assistant | 7.0AI | HighAI | 2025-12-03 |
| CVE-2025-62161 | youki container escape via "masked path" abuse due to mount race conditions — youki | 8.4 | - | 2025-11-05 |
| CVE-2024-45310 | runc can be confused to create empty files/directories on the host — runc | 3.6 | Low | 2024-09-03 |
| CVE-2022-21658 | Race condition in std::fs::remove_dir_all in rustlang — rust | 7.3 | High | 2022-01-20 |
| CVE-2018-6693 | Endpoint Security for Linux Threat Prevention (ENSLTP) privilege escalation vulnerability — Endpoint Security for Linux Threat Prevention (ENSLTP) | 6.3 | - | 2018-09-18 |
Vulnerabilities classified as CWE-363 (允许符号链接跟随的竞争条件) represent 5 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.