CVE-2020-15254: crossbeam-channel Undefined Behavior before v0.4.4
(updated )
The affected version of this crate’s the bounded
channel incorrectly assumes that Vec::from_iter
has allocated capacity that same as the number of iterator elements. Vec::from_iter
does not actually guarantee that and may allocate extra memory. The destructor of the bounded
channel reconstructs Vec
from the raw pointer based on the incorrect assumes described above. This is unsound and causing deallocation with the incorrect capacity when Vec::from_iter
has allocated different sizes with the number of iterator elements.
References
- github.com/RustSec/advisory-db/pull/425
- github.com/advisories/GHSA-v5m7-53cv-f3hx
- github.com/crossbeam-rs/crossbeam
- github.com/crossbeam-rs/crossbeam/issues/539
- github.com/crossbeam-rs/crossbeam/pull/533
- github.com/crossbeam-rs/crossbeam/security/advisories/GHSA-v5m7-53cv-f3hx
- nvd.nist.gov/vuln/detail/CVE-2020-15254
- rustsec.org/advisories/RUSTSEC-2020-0052.html
Detect and mitigate CVE-2020-15254 with GitLab Dependency Scanning
Secure your software supply chain by verifying that all open source dependencies used in your projects contain no disclosed vulnerabilities. Learn more about Dependency Scanning →