RUSTSEC-2020-0128
Dashboard / Vulnerabilities / RUSTSEC-2020-0128
RUSTSEC-2020-0128
Published: 24 Nov 2020Last Modified: 8 Nov 2023
Aliases:
Summary: Cache<K>: Send/Sync impls needs trait bounds on `K`
Details: Affected versions of this crate unconditionally implement Send/Sync for `Cache<K>`. This allows users to insert `K` that is not Send or not Sync. This allows users to create data races by using non-Send types like `Arc<Cell<T>>` or `Rc<T>` as `K` in `Cache<K>`. It is also possible to create data races by using types like `Cell<T>` or `RefCell<T>` (types that are `Send` but not `Sync`). Such data races can lead to memory corruption.
References: https://crates.io/crates/cache, https://rustsec.org/advisories/RUSTSEC-2020-0128.html, https://github.com/krl/cache/issues/1
Affected packages
Package
Name: cache
Purl: pkg:cargo/cache
Affected ranges
Type: SEMVER
Events:
Introduced- 0.0.0-0
Fixed -None
Affected versions
Common Vulnerability Scoring System
Attack Vector
Network
Adjacent
Local
Physical
Privileges Required
None
Low
High
User Interaction
None
Required
Scope
Unchanged
Changed
Confidentiality
None
Low
High
Integrity
None
Low
High
Availability
None
Low
High
