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 iroh-gossip

Dependencies

(26 total, 6 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^11.0.95up to date
 async-channel^2.3.12.3.1up to date
 iroh-blake3^1.4.51.4.5up to date
 bytes^1.71.9.0up to date
 derive_more^1.0.01.0.0up to date
 ed25519-dalek^2.0.02.1.1up to date
 futures-concurrency^7.6.17.6.2up to date
 futures-lite^2.32.6.0up to date
 futures-util^0.3.300.3.31up to date
 indexmap^2.02.7.1up to date
 iroh-base^0.28.00.31.0out of date
 iroh-metrics^0.28.00.31.0out of date
 iroh-net^0.28.10.28.2up to date
 iroh-router^0.28.00.28.0up to date
 nested_enum_utils^0.1.00.1.0up to date
 postcard^11.1.1up to date
 quic-rpc^0.140.18.0out of date
 quic-rpc-derive^0.140.17.3out of date
 rand^0.8.50.9.0out of date
 rand_core^0.6.40.9.0out of date
 serde^1.0.1641.0.217up to date
 serde-error^0.1.30.1.3up to date
 strum^0.260.26.3up to date
 tokio ⚠️^11.43.0maybe insecure
 tokio-util^0.7.120.7.13up to date
 tracing^0.10.1.41up to date

Dev dependencies

(6 total, 2 outdated)

CrateRequiredLatestStatus
 clap^44.5.27up to date
 iroh-net^0.28.10.28.2up to date
 iroh-test^0.28.00.31.0out of date
 rand_chacha^0.3.10.9.0out of date
 tracing-subscriber^0.30.3.19up to date
 url^2.4.02.5.4up 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);