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 fabruic

Dependencies

(25 total, 8 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 async-trait^0.10.1.83up to date
 bincode^11.3.3up to date
 bytes^11.8.0up to date
 ct-logs^0.90.9.0up to date
 flume^0.110.11.1up to date
 futures-channel^0.30.3.31up to date
 futures-executor^0.30.3.31up to date
 futures-util^0.30.3.31up to date
 parking_lot^0.120.12.3up to date
 pin-project^11.1.7up to date
 quinn^0.10.10.11.6out of date
 rcgen^0.11.00.13.1out of date
 rustls ⚠️^0.21.10.23.17out of date
 rustls-native-certs^0.60.8.1out of date
 rustls-webpki^0.101.40.102.8out of date
 serde^11.0.215up to date
 socket2^0.5.30.5.7up to date
 thiserror^12.0.3out of date
 time^0.30.3.36up to date
 tokio ⚠️^11.41.1maybe insecure
 trust-dns-resolver^0.23.00.23.2up to date
 url^22.5.3up to date
 webpki-roots^0.25.20.26.7out of date
 x509-parser^0.15.00.16.0out of date
 zeroize^11.8.1up to date

Dev dependencies

(4 total, 1 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 anyhow^11.0.93up to date
 quinn-proto ⚠️^0.10.10.11.9out of date
 tokio ⚠️^11.41.1maybe insecure
 trust-dns-proto^0.23.00.23.2up 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);

quinn-proto: Denial of service in Quinn servers

RUSTSEC-2023-0063

Receiving QUIC frames containing a frame with unknown frame type could lead to a panic. Unfortunately this is issue was not found by our fuzzing infrastructure.

Thanks to the QUIC Tester research group for reporting this issue.

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.