mirror of
https://github.com/OMGeeky/advisory-db.git
synced 2026-02-15 22:04:38 +01:00
517 B
517 B
[advisory]
id = "RUSTSEC-2020-0090"
package = "thex"
aliases = ["CVE-2020-35927"]
date = "2020-12-08"
categories = ["memory-corruption", "thread-safety"]
keywords = ["concurrency"]
[versions]
patched = []
Thex allows data races of non-Send types across threads
thex::Thex<T> implements Sync for all types T. However, it is missing a
bound for T: Send.
This allows non-Send types such as Rc to be sent across thread boundaries
which can trigger undefined behavior and memory corruption.