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 libp2p-mdns

Dependencies

(15 total, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 async-std^1.01.12.0up to date
 data-encoding^2.02.6.0up to date
 dns-parser^0.80.8.0up to date
 either^1.5.31.11.0up to date
 futures^0.3.10.3.30up to date
 lazy_static^1.21.4.0up to date
 libp2p-core^0.14.0-alpha.10.41.2out of date
 libp2p-swarm^0.4.0-alpha.10.44.2out of date
 log^0.40.4.21up to date
 parity-multiaddr^0.7.00.11.2out of date
 net2^0.20.2.39up to date
 rand^0.60.8.5out of date
 smallvec ⚠️^1.01.13.2maybe insecure
 void^1.01.0.2up to date
 wasm-timer^0.2.40.2.5up to date

Dev dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 get_if_addrs^0.5.30.5.3up to date

Security Vulnerabilities

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.