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 tungstenite

Dependencies

(12 total, 6 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 base64^0.11.00.22.1out of date
 byteorder^1.3.21.5.0up to date
 bytes^0.4.121.8.0out of date
 http ⚠️^0.1.191.1.0out of date
 httparse^1.3.41.9.5up to date
 input_buffer^0.2.00.5.0out of date
 log^0.4.80.4.22up to date
 native-tls^0.2.30.2.12up to date
 rand^0.7.20.8.5out of date
 sha-1^0.8.10.10.1out of date
 url^2.1.02.5.3up to date
 utf-8^0.7.50.7.6up to date

Dev dependencies

(1 total, 1 outdated)

CrateRequiredLatestStatus
 env_logger^0.7.10.11.5out of 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