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

(13 total, 6 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 async-std^1.0.11.12.0up to date
 cookie^0.12.00.18.1out of date
 futures^0.3.10.3.30up to date
 http ⚠️^0.1.191.1.0out of date
 http-service^0.4.00.5.0out of date
 http-service-hyper^0.4.10.4.1up to date
 log^0.4.80.4.21up to date
 mime^0.3.140.3.17up to date
 pin-project-lite^0.1.00.2.14out of date
 route-recognizer^0.1.130.3.1out of date
 serde^1.0.1021.0.198up to date
 serde_json^1.0.411.0.116up to date
 serde_qs^0.5.00.13.0out of date

Dev dependencies

(13 total, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 async-std^1.0.11.12.0up to date
 basic-cookies^0.1.30.1.5up to date
 bytes^0.4.121.6.0out of date
 futures-fs^0.0.50.0.5up to date
 futures-util^0.3.00.3.30up to date
 http-service-mock^0.4.00.5.0out of date
 juniper ⚠️^0.14.10.16.1out of date
 mime^0.3.140.3.17up to date
 mime_guess^2.0.12.0.4up to date
 percent-encoding^2.1.02.3.1up to date
 serde^1.0.1021.0.198up to date
 structopt^0.3.30.3.26up to date
 surf^1.0.32.3.2out 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.