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

(26 total, 12 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 async-stream^0.30.3.5up to date
 async-trait^0.1.130.1.80up to date
 axum^0.6.90.7.5out of date
 base64^0.210.22.0out of date
 bytes^1.01.6.0up to date
 flate2^1.01.0.29up to date
 futures-core^0.30.3.30up to date
 futures-util^0.30.3.30up to date
 h2 ⚠️^0.30.4.4out of date
 http^0.21.1.0out of date
 http-body^0.4.41.0.0out of date
 hyper^0.14.141.3.1out of date
 hyper-timeout^0.40.5.1out of date
 percent-encoding^2.12.3.1up to date
 pin-project^1.0.111.1.5up to date
 prost^0.110.12.4out of date
 rustls-native-certs^0.6.10.7.0out of date
 rustls-pemfile^1.02.1.2out of date
 tokio ⚠️^1.0.11.37.0maybe insecure
 tokio-rustls^0.24.00.26.0out of date
 tokio-stream^0.10.1.15up to date
 tower^0.4.70.4.13up to date
 tower-layer^0.30.3.2up to date
 tower-service^0.30.3.2up to date
 tracing^0.10.1.40up to date
 webpki-roots^0.23.00.26.1out of date

Dev dependencies

(7 total, 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.37.0maybe insecure
 tower^0.4.70.4.13up to 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.