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 tendermint-rpc

Dependencies

(28 total, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 async-trait^0.10.1.85up to date
 async-tungstenite^0.240.28.2out of date
 bytes^1.01.9.0up to date
 flex-error^0.4.40.4.4up to date
 futures^0.30.3.31up to date
 getrandom^0.20.2.15up to date
 peg^0.80.8.4up to date
 pin-project^1.0.11.1.8up to date
 rand^0.80.8.5up to date
 reqwest^0.11.200.12.12out of date
 semver^1.01.0.24up to date
 serde^11.0.217up to date
 serde_bytes^0.110.11.15up to date
 serde_json^11.0.136up to date
 structopt^0.30.3.26up to date
 subtle^22.6.1up to date
 subtle-encoding^0.50.5.1up to date
 tendermint^0.40.10.40.1up to date
 tendermint-config^0.40.10.40.1up to date
 tendermint-proto^0.40.10.40.1up to date
 thiserror^12.0.11out of date
 time^0.30.3.37up to date
 tokio ⚠️^1.01.43.0maybe insecure
 tracing^0.10.1.41up to date
 tracing-subscriber^0.30.3.19up to date
 url^2.4.12.5.4up to date
 uuid^1.71.12.0up to date
 walkdir^2.32.5.0up to date

Dev dependencies

(5 total, 1 possibly insecure)

CrateRequiredLatestStatus
 http^11.2.0up to date
 lazy_static^1.4.01.5.0up to date
 tendermint^0.40.10.40.1up to date
 tokio ⚠️^1.01.43.0maybe insecure
 tokio-test^0.40.4.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);