Affected versions of the OpenSSL crate used structures after they'd been freed.
This project contains known security vulnerabilities. Find detailed information at the bottom.
trust-dns-proto
(23 total, 3 insecure)
Crate | Required | Latest | Status |
---|---|---|---|
async-trait | ^0.1.36 | 0.1.42 | up to date |
backtrace | ^0.3.50 | 0.3.56 | up to date |
cfg-if | ^1 | 1.0.0 | up to date |
data-encoding | ^2.2.0 | 2.3.2 | up to date |
enum-as-inner | ^0.3 | 0.3.3 | up to date |
futures-channel | ^0.3.5 | 0.3.13 | up to date |
futures-io | ^0.3.5 | 0.3.13 | up to date |
futures-util | ^0.3.5 | 0.3.13 | insecure |
idna | ^0.2.0 | 0.2.2 | up to date |
ipnet | ^2.3.0 | 2.3.0 | up to date |
js-sys | ^0.3.44 | 0.3.47 | up to date |
lazy_static | ^1.0 | 1.4.0 | up to date |
log | ^0.4 | 0.4.14 | up to date |
openssl | ^0.10 | 0.10.32 | insecure |
rand | ^0.8 | 0.8.3 | up to date |
ring | ^0.16 | 0.16.20 | up to date |
serde | ^1.0 | 1.0.123 | up to date |
smallvec | ^1.2 | 1.6.1 | insecure |
socket2 | ^0.3.16 | 0.3.19 | up to date |
thiserror | ^1.0.20 | 1.0.24 | up to date |
tokio | ^1.0 | 1.2.0 | up to date |
url | ^2.1.0 | 2.2.1 | up to date |
wasm-bindgen | ^0.2.58 | 0.2.70 | up to date |
(3 total, all up-to-date)
Crate | Required | Latest | Status |
---|---|---|---|
env_logger | ^0.8 | 0.8.3 | up to date |
futures-executor | ^0.3.5 | 0.3.13 | up to date |
tokio | ^1.0 | 1.2.0 | up to date |
openssl
: Use after free in CMS SigningAffected versions of the OpenSSL crate used structures after they'd been freed.
futures-util
: MutexGuard::map can cause a data race in safe codeAffected versions of the crate had a Send/Sync implementation for MappedMutexGuard that only considered variance on T, while MappedMutexGuard dereferenced to U.
This could of led to data races in safe Rust code when a closure used in MutexGuard::map() returns U that is unrelated to T.
The issue was fixed by fixing Send
and Sync
implementations, and by adding a PhantomData<&'a mut U>
marker to the MappedMutexGuard
type to tell the compiler that the guard is over
U too.
smallvec
: Buffer overflow in SmallVec::insert_manyA bug in the SmallVec::insert_many
method caused it to allocate a buffer that was smaller than needed. It then wrote past the end of the buffer, causing a buffer overflow and memory corruption on the heap.
This bug was only triggered if the iterator passed to insert_many
yielded more items than the lower bound returned from its size_hint
method.
The flaw was corrected in smallvec 0.6.14 and 1.6.1, by ensuring that additional space is always reserved for each item inserted. The fix also simplified the implementation of insert_many
to use less unsafe code, so it is easier to verify its correctness.
Thank you to Yechan Bae (@Qwaz) and the Rust group at Georgia Tech’s SSLab for finding and reporting this bug.