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

(13 total, 8 outdated, 3 possibly insecure)

CrateRequiredLatestStatus
 bytes^0.4.91.10.1out of date
 failure^0.1.20.1.8up to date
 finchers^0.120.13.5out of date
 futures^0.1.240.3.31out of date
 http ⚠️^0.1.101.3.1out of date
 juniper ⚠️^0.10.00.16.1out of date
 log^0.4.50.4.27up to date
 percent-encoding^1.0.12.3.1out of date
 serde^1.0.751.0.219up to date
 serde_json^1.0.261.0.140up to date
 serde_qs^0.4.10.14.0out of date
 tokio ⚠️^0.1.81.44.1out of date
 tokio-threadpool^0.1.60.1.18up to date

Dev dependencies

(3 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 futures-cpupool^0.1.80.1.8up to date
 juniper ⚠️^0.10.00.16.1out of 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

tokio: Data race when sending and receiving after closing a `oneshot` channel

RUSTSEC-2021-0124

If a tokio::sync::oneshot channel is closed (via the oneshot::Receiver::close method), a data race may occur if the oneshot::Sender::send method is called while the corresponding oneshot::Receiver is awaited or calling try_recv.

When these methods are called concurrently on a closed channel, the two halves of the channel can concurrently access a shared memory location, resulting in a data race. This has been observed to cause memory corruption.

Note that the race only occurs when both halves of the channel are used after the Receiver half has called close. Code where close is not used, or where the Receiver is not awaited and try_recv is not called after calling close, is not affected.

See tokio#4225 for more details.

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.