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, 14 outdated, 4 possibly insecure)

CrateRequiredLatestStatus
 async-stream^0.30.3.6up to date
 async-trait^0.1.130.1.92up to date
 axum^0.6.90.8.9out of date
 base64^0.210.23.1out of date
 bytes ⚠️^1.01.12.1maybe insecure
 flate2^1.01.1.9up to date
 h2 ⚠️^0.3.170.4.15out of date
 http^0.21.5.0out of date
 http-body^0.4.41.1.0out of date
 hyper^0.14.261.11.0out of date
 hyper-timeout^0.40.5.2out of date
 percent-encoding^2.12.3.2up to date
 pin-project^1.0.111.1.13up to date
 prost^0.120.14.4out of date
 rustls ⚠️^0.21.70.23.43out of date
 rustls-native-certs^0.6.30.8.4out of date
 rustls-pemfile^1.02.2.0out of date
 tokio ⚠️^1.0.11.53.1maybe insecure
 tokio-rustls^0.24.10.26.4out of date
 tokio-stream^0.10.1.19up to date
 tower^0.4.70.5.3out of date
 tower-layer^0.30.3.3up to date
 tower-service^0.30.3.3up to date
 tracing^0.10.1.44up to date
 webpki-roots^0.25.01.0.9out of date

Dev dependencies

(7 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 bencher^0.1.50.1.5up to date
 quickcheck^1.01.1.0up to date
 quickcheck_macros^1.01.2.0up to date
 rand^0.80.10.2out of date
 static_assertions^1.01.1.0up to date
 tokio ⚠️^1.01.53.1maybe insecure
 tower^0.4.70.5.3out of date

Security Vulnerabilities

tokio: reject_remote_clients Configuration corruption

RUSTSEC-2023-0001

On Windows, configuring a named pipe server with pipe_mode will force ServerOptions::reject_remote_clients as false.

This drops any intended explicit configuration for the reject_remote_clients that may have been set as true previously.

The default setting of reject_remote_clients is normally true meaning the default is also overridden as false.

Workarounds

Ensure that pipe_mode is set first after initializing a ServerOptions. For example:

let mut opts = ServerOptions::new();
opts.pipe_mode(PipeMode::Message);
opts.reject_remote_clients(true);

h2: Degradation of service in h2 servers with CONTINUATION Flood

RUSTSEC-2024-0332

An attacker can send a flood of CONTINUATION frames, causing h2 to process them indefinitely. This results in an increase in CPU usage.

Tokio task budget helps prevent this from a complete denial-of-service, as the server can still respond to legitimate requests, albeit with increased latency.

More details at "https://seanmonstar.com/blog/hyper-http2-continuation-flood/.

Patches available for 0.4.x and 0.3.x versions.

rustls: `rustls::ConnectionCommon::complete_io` could fall into an infinite loop based on network input

RUSTSEC-2024-0336

If a close_notify alert is received during a handshake, complete_io does not terminate.

Callers which do not call complete_io are not affected.

rustls-tokio and rustls-ffi do not call complete_io and are not affected.

rustls::Stream and rustls::StreamOwned types use complete_io and are affected.

bytes: Integer overflow in `BytesMut::reserve`

RUSTSEC-2026-0007

In the unique reclaim path of BytesMut::reserve, the condition

if v_capacity >= new_cap + offset

uses an unchecked addition. When new_cap + offset overflows usize in release builds, this condition may incorrectly pass, causing self.cap to be set to a value that exceeds the actual allocated capacity. Subsequent APIs such as spare_capacity_mut() then trust this corrupted cap value and may create out-of-bounds slices, leading to UB.

This behavior is observable in release builds (integer overflow wraps), whereas debug builds panic due to overflow checks.

PoC

use bytes::*;

fn main() {
    let mut a = BytesMut::from(&b"hello world"[..]);
    let mut b = a.split_off(5);

    // Ensure b becomes the unique owner of the backing storage
    drop(a);

    // Trigger overflow in new_cap + offset inside reserve
    b.reserve(usize::MAX - 6);

    // This call relies on the corrupted cap and may cause UB & HBO
    b.put_u8(b'h');
}

Workarounds

Users of BytesMut::reserve are only affected if integer overflow checks are configured to wrap. When integer overflow is configured to panic, this issue does not apply.