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 ethers-providers

Dependencies

(30 total, 7 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 async-trait^0.1.500.1.83up to date
 auto_impl^1.0.11.2.0up to date
 base64^0.130.22.1out of date
 bytes^1.3.01.8.0up to date
 ethers-core^1.0.02.0.14out of date
 futures-channel^0.3.160.3.31up to date
 futures-core^0.3.160.3.31up to date
 futures-timer^3.0.23.0.3up to date
 futures-util^0.30.3.31up to date
 getrandom^0.20.2.15up to date
 hashers^1.0.11.0.1up to date
 hex^0.4.30.4.3up to date
 http^0.21.1.0out of date
 once_cell^1.16.01.20.2up to date
 parking_lot^0.110.12.3out of date
 pin-project^1.0.111.1.7up to date
 reqwest^0.11.130.12.9out of date
 serde^1.0.1241.0.214up to date
 serde_json^1.0.641.0.132up to date
 thiserror^1.02.0.0out of date
 tokio ⚠️^1.181.41.1maybe insecure
 tokio-tungstenite^0.17.20.24.0out of date
 tracing^0.1.370.1.40up to date
 tracing-futures^0.2.50.2.5up to date
 url^2.3.12.5.3up to date
 wasm-bindgen^0.20.2.95up to date
 wasm-bindgen-futures^0.40.4.45up to date
 wasm-timer^0.20.2.5up to date
 web-sys^0.30.3.72up to date
 ws_stream_wasm^0.70.7.4up to date

Dev dependencies

(2 total, 1 possibly insecure)

CrateRequiredLatestStatus
 tempfile^3.3.03.13.0up to date
 tokio ⚠️^1.181.41.1maybe 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);