This project might be open to known security vulnerabilities, which can be prevented by tightening the version range of affected dependencies. Find detailed information at the bottom.

Crate trust-dns-resolver

Dependencies

(22 total, 12 outdated, 3 possibly insecure)

CrateRequiredLatestStatus
 backtrace^0.3.440.3.71up to date
 cfg-if^0.1.91.0.0out of date
 futures^0.3.40.3.30up to date
 ipconfig^0.2.00.3.2out of date
 lazy_static^1.01.4.0up to date
 log^0.40.4.21up to date
 lru-cache^0.1.20.1.2up to date
 resolv-conf^0.7.00.7.0up to date
 rustls^0.170.23.4out of date
 serde^1.01.0.197up to date
 smallvec ⚠️^1.21.13.2maybe insecure
 thiserror^1.0.141.0.58up to date
 tokio ⚠️^0.2.161.37.0out of date
 tokio-openssl^0.4.00.6.4out of date
 tokio-rustls ⚠️^0.130.26.0out of date
 tokio-tls^0.3.00.3.1up to date
 trust-dns-https^0.19.60.21.1out of date
 trust-dns-native-tls^0.19.60.21.1out of date
 trust-dns-openssl^0.19.60.21.1out of date
 trust-dns-proto^0.19.60.23.2out of date
 trust-dns-rustls^0.19.60.21.1out of date
 webpki-roots^0.190.26.1out of date

Dev dependencies

(2 total, 1 outdated)

CrateRequiredLatestStatus
 env_logger^0.70.11.3out of date
 futures^0.3.40.3.30up to date

Security Vulnerabilities

tokio-rustls: tokio-rustls reads may cause excessive memory usage

RUSTSEC-2020-0019

tokio-rustls does not call process_new_packets immediately after read, so the expected termination condition wants_read always returns true. As long as new incoming data arrives faster than it is processed and the reader does not return pending, data will be buffered.

This may cause DoS.

smallvec: Buffer overflow in SmallVec::insert_many

RUSTSEC-2021-0003

A 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.

tokio: Data race when sending and receiving after closing a `oneshot` channel

RUSTSEC-2021-0124

If a tokio::sync::oneshot channel is closed (via the oneshot::Receiver::close method), a data race may occur if the oneshot::Sender::send method is called while the corresponding oneshot::Receiver is awaited or calling try_recv.

When these methods are called concurrently on a closed channel, the two halves of the channel can concurrently access a shared memory location, resulting in a data race. This has been observed to cause memory corruption.

Note that the race only occurs when both halves of the channel are used after the Receiver half has called close. Code where close is not used, or where the Receiver is not awaited and try_recv is not called after calling close, is not affected.

See tokio#4225 for more details.