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 atm0s-sdn-standalone

Dependencies

(8 total, 1 possibly insecure)

CrateRequiredLatestStatus
 signal-hook^0.3.170.3.17up to date
 tokio ⚠️^11.44.1maybe insecure
 poem^33.1.7up to date
 rust-embed^8.28.6.0up to date
 futures-util^0.30.3.31up to date
 tracing-subscriber^0.30.3.19up to date
 serde_json^1.01.0.140up to date
 local-ip-address^0.60.6.3up to date

Crate bin-fuzz

Dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 libfuzzer-sys^0.40.4.9up to date

Crate atm0s-sdn-utils

No external dependencies! 🙌

Crate atm0s-sdn-identity

Dependencies

(2 total, 1 outdated)

CrateRequiredLatestStatus
 multiaddr^0.180.18.2up to date
 rand^0.80.9.0out of date

Crate atm0s-sdn-router

Dev dependencies

(2 total, 1 outdated)

CrateRequiredLatestStatus
 criterion^0.5.10.5.1up to date
 rand^0.8.50.9.0out of date

Crate atm0s-sdn-network

Dependencies

(8 total, 1 outdated)

CrateRequiredLatestStatus
 bytes^1.51.10.1up to date
 bincode^1.32.0.1out of date
 sha1^0.100.10.6up to date
 num^0.40.4.3up to date
 sha2^0.100.10.8up to date
 x25519-dalek^2.02.0.1up to date
 aes-gcm^0.100.10.3up to date
 derivative^2.22.2.0up to date

Crate atm0s-sdn

Dev dependencies

(2 total, all up-to-date)

CrateRequiredLatestStatus
 signal-hook^0.30.3.17up to date
 local-ip-address^0.60.6.3up 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);