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 isahc

Dependencies

(16 total, 6 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 bytes^0.41.10.1out of date
 chrono ⚠️^0.40.4.41maybe insecure
 crossbeam-channel^0.30.5.15out of date
 curl^0.4.200.4.48up to date
 curl-sys^0.4.200.4.82+curl-8.14.1up to date
 futures-io-preview=0.3.0-alpha.170.2.2up to date
 futures-util-preview=0.3.0-alpha.170.2.2up to date
 http ⚠️^0.11.3.1out of date
 lazy_static^11.5.0up to date
 log^0.40.4.27up to date
 parking_lot^0.90.12.4out of date
 publicsuffix^1.52.3.0out of date
 serde^1.01.0.219up to date
 serde_json^1.01.0.140up to date
 slab^0.40.4.10up to date
 sluice^0.40.6.0out of date

Dev dependencies

(5 total, 2 outdated)

CrateRequiredLatestStatus
 env_logger^0.60.11.8out of date
 futures-preview=0.3.0-alpha.170.2.2up to date
 mockito^0.201.7.0out of date
 rayon^11.10.0up to date
 speculate^0.10.1.2up 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

chrono: Potential segfault in `localtime_r` invocations

RUSTSEC-2020-0159

Impact

Unix-like operating systems may segfault due to dereferencing a dangling pointer in specific circumstances. This requires an environment variable to be set in a different thread than the affected functions. This may occur without the user's knowledge, notably in a third-party library.

Workarounds

No workarounds are known.

References