- Reported
-
- Issued
-
- Package
-
abox
(crates.io)
- Type
-
Vulnerability
- Categories
-
- Aliases
-
- References
-
- CVSS Score
- 8.1
HIGH
- CVSS Details
-
- Attack vector
- Network
- Attack complexity
- High
- Privileges required
- None
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- High
- Integrity
- High
- Availability
- High
- CVSS Vector
- CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
- Patched
-
Description
Affected versions of this crate implements Send
/Sync
for AtomicBox<T>
without requiring T: Send
/T: Sync
. This allows to create data races to T: !Sync
and send T: !Send
to another thread.
Such behavior breaks the compile-time thread safety guarantees of Rust, and allows users to incur undefined behavior using safe Rust (e.g. memory corruption from data race).
The flaw was corrected in commit 34c2b9e by adding trait bound T: Send
to Send
impl for AtomicBox<T>
and trait bound T: Sync
to Sync
impl for AtomicBox<T>
.
Advisory available under CC0-1.0
license.