GHSA-x4mq-m75f-mx8m: Delegate functions are missing `Send` bound
9.8
CVSS Score
3.1
Basic Information
CVE ID
-
GHSA ID
EPSS Score
-
CWE
Published
6/17/2022
Updated
1/12/2023
KEV Status
No
Technology
Rust
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| windows | rust | >= 0.1.2, < 0.32.0 | 0.32.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability manifests in delegate handler constructors across multiple Windows API modules where FnMut parameters lacked Send bounds. The commit diff shows systematic addition of ::core::marker::Send to all handler generics. High confidence comes from: 1) Vulnerability description specifically calls out delegate handlers 2) Commit modifies 50+ handler implementations 3) CWE-820 directly relates to missing synchronization primitives 4) Example in GHSA shows TypedEventHandler was vulnerable 5) Windows API documentation for free-threaded handlers requires thread-safe callbacks.