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 finchers-juniper

Dependencies

(11 total, 6 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 bytes^0.4.91.6.0out of date
 failure^0.1.20.1.8up to date
 finchers^0.130.13.5up to date
 futures^0.1.240.3.30out of date
 http ⚠️^0.1.101.1.0out of date
 juniper ⚠️^0.10.00.16.1out of date
 log^0.4.50.4.21up to date
 percent-encoding^1.0.12.3.1out of date
 serde^1.0.751.0.198up to date
 serde_json^1.0.261.0.116up to date
 serde_qs^0.4.10.13.0out of date

Dev dependencies

(5 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 cargo-husky^1.0.11.5.0up to date
 futures-cpupool^0.1.80.1.8up to date
 juniper ⚠️^0.10.00.16.1out of date
 matches^0.1.80.1.10up to date
 pretty_env_logger^0.2.40.5.0out 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.