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

(28 total, 2 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 async-stream^0.30.3.5up to date
 async-trait^0.1.130.1.82up to date
 axum^0.70.7.5up to date
 base64^0.220.22.1up to date
 bytes^1.01.7.1up to date
 flate2^1.01.0.33up to date
 h2 ⚠️^0.40.4.6maybe insecure
 http^11.1.0up to date
 http-body^11.0.1up to date
 http-body-util^0.10.1.2up to date
 hyper^11.4.1up to date
 hyper-timeout^0.50.5.1up to date
 hyper-util^0.1.40.1.8up to date
 percent-encoding^2.12.3.1up to date
 pin-project^1.0.111.1.5up to date
 prost^0.130.13.2up to date
 rustls-native-certs^0.70.8.0out of date
 rustls-pemfile^2.02.1.3up to date
 socket2^0.50.5.7up to date
 tokio ⚠️^11.40.0maybe insecure
 tokio-rustls^0.260.26.0up to date
 tokio-stream^0.10.1.16up to date
 tower^0.4.70.5.1out of date
 tower-layer^0.30.3.3up to date
 tower-service^0.30.3.3up to date
 tracing^0.10.1.40up to date
 webpki-roots^0.260.26.5up to date
 zstd^0.13.00.13.2up to date

Dev dependencies

(7 total, 1 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 bencher^0.1.50.1.5up to date
 quickcheck^1.01.0.3up to date
 quickcheck_macros^1.01.0.0up to date
 rand^0.80.8.5up to date
 static_assertions^1.01.1.0up to date
 tokio ⚠️^1.01.40.0maybe insecure
 tower^0.4.70.5.1out 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.