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 tonic

Dependencies

(25 total, 18 outdated, 5 possibly insecure)

CrateRequiredLatestStatus
 async-stream^0.1.20.3.5out of date
 async-trait^0.1.130.1.80up to date
 base64^0.100.22.0out of date
 bytes^0.41.6.0out of date
 futures-core-preview=0.3.0-alpha.190.2.3up to date
 futures-util-preview=0.3.0-alpha.190.2.2up to date
 http ⚠️^0.1.141.1.0out of date
 http-body=0.2.0-alpha.31.0.0out of date
 hyper ⚠️=0.13.0-alpha.41.3.1out of date
 openssl ⚠️^0.100.10.64maybe insecure
 percent-encoding^1.0.12.3.1out of date
 pin-project^0.41.1.5out of date
 prost ⚠️^0.50.12.4out of date
 prost-derive^0.50.12.4out of date
 tokio ⚠️=0.2.0-alpha.61.37.0out of date
 tokio-codec=0.2.0-alpha.60.1.2up to date
 tokio-openssl=0.4.0-alpha.60.6.4out of date
 tokio-rustls=0.12.0-alpha.40.26.0out of date
 tower=0.3.0-alpha.20.4.13out of date
 tower-balance=0.3.0-alpha.20.3.0out of date
 tower-load=0.3.0-alpha.20.3.0out of date
 tower-make=0.3.0-alpha.2a0.3.0out of date
 tower-reconnect=0.3.0-alpha.20.0.0up to date
 tower-service=0.3.0-alpha.20.3.2out of date
 tracing^0.10.1.40up to 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

prost: Parsing a specially crafted message can result in a stack overflow

RUSTSEC-2020-0002

Affected versions of this crate contained a bug in which decoding untrusted input could overflow the stack.

On architectures with stack probes (like x86), this can be used for denial of service attacks, while on architectures without stack probes (like ARM) overflowing the stack is unsound and can result in potential memory corruption (or even RCE).

The flaw was quickly corrected by @danburkert and released in version 0.6.1.

hyper: Multiple Transfer-Encoding headers misinterprets request payload

RUSTSEC-2021-0020

hyper's HTTP server code had a flaw that incorrectly understands some requests with multiple transfer-encoding headers to have a chunked payload, when it should have been rejected as illegal. This combined with an upstream HTTP proxy that understands the request payload boundary differently can result in "request smuggling" or "desync attacks".

hyper: Lenient `hyper` header parsing of `Content-Length` could allow request smuggling

RUSTSEC-2021-0078

hyper's HTTP header parser accepted, according to RFC 7230, illegal contents inside Content-Length headers. Due to this, upstream HTTP proxies that ignore the header may still forward them along if it chooses to ignore the error.

To be vulnerable, hyper must be used as an HTTP/1 server and using an HTTP proxy upstream that ignores the header's contents but still forwards it. Due to all the factors that must line up, an attack exploiting this vulnerability is unlikely.

hyper: Integer overflow in `hyper`'s parsing of the `Transfer-Encoding` header leads to data loss

RUSTSEC-2021-0079

When decoding chunk sizes that are too large, hyper's code would encounter an integer overflow. Depending on the situation, this could lead to data loss from an incorrect total size, or in rarer cases, a request smuggling attack.

To be vulnerable, you must be using hyper for any HTTP/1 purpose, including as a client or server, and consumers must send requests or responses that specify a chunk size greater than 18 exabytes. For a possible request smuggling attack to be possible, any upstream proxies must accept a chunk size greater than 64 bits.

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.

openssl: `openssl` `X509VerifyParamRef::set_host` buffer over-read

RUSTSEC-2023-0044

When this function was passed an empty string, openssl would attempt to call strlen on it, reading arbitrary memory until it reached a NUL byte.