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 redis

Dependencies

(30 total, 7 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 ahash^0.7.60.8.11out of date
 arc-swap^1.1.01.7.1up to date
 async-native-tls^0.40.5.0out of date
 async-std^1.8.01.12.0up to date
 async-trait^0.1.240.1.80up to date
 bytes^11.6.0up to date
 combine^4.64.6.7up to date
 crc16^0.40.4.0up to date
 futures^0.3.30.3.30up to date
 futures-rustls^0.24.00.26.0out of date
 futures-util^0.3.150.3.30up to date
 itoa^1.01.0.11up to date
 log^0.40.4.21up to date
 native-tls^0.20.2.11up to date
 percent-encoding^2.12.3.1up to date
 pin-project-lite^0.20.2.14up to date
 r2d2^0.8.80.8.10up to date
 rand^0.80.8.5up to date
 rustls^0.21.00.23.4out of date
 rustls-native-certs^0.6.20.7.0out of date
 ryu^1.01.0.17up to date
 serde^1.0.821.0.198up to date
 serde_json^1.0.821.0.116up to date
 sha1_smol^1.01.0.0up to date
 tokio ⚠️^11.37.0maybe insecure
 tokio-native-tls^0.30.3.1up to date
 tokio-rustls^0.24.00.26.0out of date
 tokio-util^0.70.7.10up to date
 url^2.12.5.0up to date
 webpki-roots^0.23.00.26.1out of date

Dev dependencies

(12 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^11.0.82up to date
 assert_approx_eq^1.01.1.0up to date
 criterion^0.40.5.1out of date
 fnv^1.0.51.0.7up to date
 futures^0.30.3.30up to date
 once_cell^11.19.0up to date
 partial-io^0.50.5.4up to date
 quickcheck^1.0.31.0.3up to date
 rand^0.80.8.5up to date
 socket2^0.40.5.6out of date
 tempfile^3.23.10.1up to date
 tokio ⚠️^11.37.0maybe insecure

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);