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 tide

Dependencies

(17 total, 7 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 cookie^0.110.18.1out of date
 fnv^1.0.61.0.7up to date
 futures-preview^0.3.0-alpha.150.2.2up to date
 http ⚠️^0.11.1.0out of date
 http-service^0.2.00.5.0out of date
 http-service-hyper^0.2.00.4.1out of date
 multipart^0.15.30.18.0out of date
 pin-utils^0.1.0-alpha.40.1.0up to date
 route-recognizer^0.1.120.3.1out of date
 serde^1.0.901.0.198up to date
 serde_derive^1.0.901.0.198up to date
 serde_json^1.0.391.0.116up to date
 serde_urlencoded^0.5.50.7.1out of date
 slog^2.4.12.7.0up to date
 slog-async^2.3.02.8.0up to date
 slog-term^2.4.02.9.1up to date
 typemap^0.3.30.3.3up to date

Dev dependencies

(5 total, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 basic-cookies^0.1.30.1.5up to date
 http-service-mock^0.2.00.5.0out of date
 juniper ⚠️^0.10.00.16.1out of date
 serde^1.0.901.0.198up to date
 structopt^0.2.150.3.26out 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

juniper: Denial of service on deeply nested fragment requests

RUSTSEC-2022-0038

Deeply nested fragments in a GraphQL request may cause a stack overflow in the server.