CWE-362 使用共享资源的并发执行不恰当同步问题(竞争条件) 类弱点 606 条 CVE 漏洞汇总,含 AI 中文分析。
CWE-362 属于并发执行漏洞,指代码序列在需要独占访问共享资源时,因缺乏同步机制导致存在时间窗口,使其他并发序列能修改该资源。攻击者通常利用此竞态条件,通过精心构造并发请求篡改数据或绕过安全检查,从而引发逻辑错误或权限提升。开发者应避免此类问题,确保对共享资源的访问具备原子性,通过加锁、事务或原子操作等同步机制消除竞争窗口,保障数据一致性。
$transfer_amount = GetTransferAmount(); $balance = GetBalanceFromDatabase(); if ($transfer_amount < 0) { FatalError("Bad Transfer Amount"); } $newbalance = $balance - $transfer_amount; if (($balance - $transfer_amount) < 0) { FatalError("Insufficient Funds"); } SendNewBalanceToDatabase($newbalance); NotifyUser("Transfer of $transfer_amount succeeded."); NotifyUser("New balance: $newbalance");
In the following pseudocode, the attacker makes two simultaneous calls of the program, CALLER-1 and CALLER-2. Both callers are for the same user account. CALLER-1 (the attacker) is associated with PROGRAM-1 (the instance that handles CALLER-1). CALLER-2 is associated with PROGRAM-2. CALLER-1 makes a transfer request of 80.00. PROGRAM-1 calls GetBalanceFromDatabase and sets $balance to 100.00 PROGRAM-1 calculates $newbalance as 20.00, then calls SendNewBalanceToDatabase(). Due to high server load, the PROGRAM-1 call to SendNewBalanceToDatabase() encounters a delay. CALLER-2 makes a transfer req
void f(pthread_mutex_t *mutex) { pthread_mutex_lock(mutex); /* access shared resource */ pthread_mutex_unlock(mutex); }
int f(pthread_mutex_t *mutex) { int result; result = pthread_mutex_lock(mutex); if (0 != result) return result; /* access shared resource */ return pthread_mutex_unlock(mutex); }
| CVE ID | 标题 | CVSS | 风险等级 | Published |
|---|---|---|---|---|
| CVE-2026-32093 | Microsoft Function Discovery Service 安全漏洞 — Windows 10 Version 1607 | 7.0 | High | 2026-04-14 |
| CVE-2026-32083 | Microsoft Windows SSDP 竞争条件问题漏洞 — Windows 10 Version 1607 | 7.0 | High | 2026-04-14 |
| CVE-2026-32082 | Microsoft Windows SSDP 竞争条件问题漏洞 — Windows 10 Version 1607 | 7.0 | High | 2026-04-14 |
| CVE-2026-27927 | Microsoft Projected File System 资源管理错误漏洞 — Windows 10 Version 1809 | 7.8 | High | 2026-04-14 |
| CVE-2026-27926 | Microsoft Windows Cloud Files Mini Filter Driver 资源管理错误漏洞 — Windows 10 Version 1809 | 7.0 | High | 2026-04-14 |
| CVE-2026-27921 | Microsoft Windows TCP/IP 资源管理错误漏洞 — Windows 10 Version 1607 | 7.0 | High | 2026-04-14 |
| CVE-2026-27918 | Microsoft Windows Shell 竞争条件问题漏洞 — Windows 10 Version 1809 | 7.8 | High | 2026-04-14 |
| CVE-2026-26174 | Microsoft Windows 资源管理错误漏洞 — Windows 10 Version 1607 | 7.0 | High | 2026-04-14 |
| CVE-2026-26167 | Microsoft Windows Push Notifications 资源管理错误漏洞 — Windows 10 Version 1607 | 8.8 | High | 2026-04-14 |
| CVE-2026-25184 | Microsoft Applocker Filter Driver 竞争条件问题漏洞 — Windows 11 version 22H3 | 7.0 | High | 2026-04-14 |
| CVE-2026-20930 | Microsoft Windows 竞争条件问题漏洞 — Windows 10 Version 1809 | 7.8 | High | 2026-04-14 |
| CVE-2026-34862 | Huawei HarmonyOS 安全漏洞 — HarmonyOS | 6.3 | Medium | 2026-04-13 |
| CVE-2026-34861 | Huawei HarmonyOS 安全漏洞 — HarmonyOS | 6.3 | Medium | 2026-04-13 |
| CVE-2026-34858 | Huawei HarmonyOS 安全漏洞 — HarmonyOS | 4.1 | Medium | 2026-04-13 |
| CVE-2026-34857 | Huawei HarmonyOS 安全漏洞 — HarmonyOS | 4.7 | Medium | 2026-04-13 |
| CVE-2026-34849 | Huawei HarmonyOS 安全漏洞 — HarmonyOS | 2.5 | Low | 2026-04-13 |
| CVE-2026-34856 | Huawei HarmonyOS 安全漏洞 — HarmonyOS | 7.3 | High | 2026-04-13 |
| CVE-2026-34851 | Huawei HarmonyOS 安全漏洞 — HarmonyOS | 2.2 | Low | 2026-04-13 |
| CVE-2026-34850 | Huawei HarmonyOS 安全漏洞 — HarmonyOS | 1.9 | Low | 2026-04-13 |
| CVE-2026-5774 | Juju 安全漏洞 — Juju | 8.8 | - | 2026-04-10 |
| CVE-2026-5902 | Google Chrome 竞争条件问题漏洞 — Chrome | 5.3AI | Medium AI | 2026-04-08 |
| CVE-2026-5893 | Google Chrome 竞争条件问题漏洞 — Chrome | 7.5AI | High AI | 2026-04-08 |
| CVE-2026-5890 | Google Chrome 竞争条件问题漏洞 — Chrome | 5.3AI | Medium AI | 2026-04-08 |
| CVE-2026-39880 | Backend 竞争条件问题漏洞 — backend | 5.0 | Medium | 2026-04-08 |
| CVE-2026-33544 | Tinyauth 竞争条件问题漏洞 — tinyauth | 7.7 | High | 2026-04-02 |
| CVE-2026-35099 | Lakeside SysTrack Agent 安全漏洞 — SysTrack Agent | 7.4 | High | 2026-04-01 |
| CVE-2026-34363 | Parse Server 竞争条件问题漏洞 — parse-server | 7.5AI | High AI | 2026-03-31 |
| CVE-2026-33028 | Nginx UI 竞争条件问题漏洞 — nginx-ui | 8.1 | - | 2026-03-30 |
| CVE-2026-33872 | elixir-nodejs 竞争条件问题漏洞 — elixir-nodejs | 5.9 | - | 2026-03-27 |
| CVE-2026-34368 | WWBN AVideo 竞争条件问题漏洞 — AVideo | 5.3 | Medium | 2026-03-27 |
CWE-362(使用共享资源的并发执行不恰当同步问题(竞争条件)) 是常见的弱点类别,本平台收录该类弱点关联的 606 条 CVE 漏洞。