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 imager

Dependencies

(21 total, 11 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 actix-web^1.0.84.5.1out of date
 clap^2.334.5.4out of date
 colourado^0.2.00.2.0up to date
 either^11.11.0up to date
 futures^0.1.290.3.30out of date
 glob^0.30.3.1up to date
 http ⚠️^0.1.181.1.0out of date
 image^0.220.25.1out of date
 imageproc^0.190.24.0out of date
 indicatif^0.12.00.17.8out of date
 itertools^0.8.00.12.1out of date
 lazy_static^1.4.01.4.0up to date
 libc^0.20.2.153up to date
 mozjpeg-sys^0.102.1.0out of date
 rand^0.70.8.5out of date
 rayon^1.1.01.10.0up to date
 serde^1.01.0.198up to date
 serde_json^1.01.0.116up to date
 structopt^0.20.3.26out of date
 tempfile^3.1.03.10.1up to date
 vmaf-sys^0.0.100.0.10up to date

Security Vulnerabilities

http: Integer Overflow in HeaderMap::reserve() can cause Denial of Service

RUSTSEC-2019-0033

HeaderMap::reserve() used usize::next_power_of_two() to calculate the increased capacity. However, next_power_of_two() silently overflows to 0 if given a sufficiently large number in release mode.

If the map was not empty when the overflow happens, the library will invoke self.grow(0) and start infinite probing. This allows an attacker who controls the argument to reserve() to cause a potential denial of service (DoS).

The flaw was corrected in 0.1.20 release of http crate.

http: HeaderMap::Drain API is unsound

RUSTSEC-2019-0034