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 hayro-syntax

Dependencies

(9 total, 1 possibly insecure)

CrateRequiredLatestStatus
 flate2^11.1.9up to date
 hayro-ccitt^0.3.00.3.0up to date
 hayro-jbig2^0.3.00.3.0up to date
 hayro-jpeg2000^0.3.50.3.5up to date
 log^0.40.4.29up to date
 memchr^2.8.02.8.0up to date
 rustc-hash^22.1.2up to date
 smallvec ⚠️^11.15.1maybe insecure
 zune-jpeg^0.50.5.15up to date

Dev dependencies

(4 total, 3 outdated)

CrateRequiredLatestStatus
 aes^0.8.40.9.0out of date
 cbc^0.1.20.2.0out of date
 md5^0.80.8.0up to date
 sha2^0.100.11.0out of 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.