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 bdk-cli

Dependencies

(23 total, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 bdk_wallet^2.1.03.0.0out of date
 clap^4.64.6.1up to date
 clap_complete^4.64.6.2up to date
 dirs^6.0.06.0.0up to date
 env_logger^0.11.100.11.10up to date
 log^0.40.4.29up to date
 serde_json^1.01.0.149up to date
 thiserror^2.0.182.0.18up to date
 tokio ⚠️^11.52.0maybe insecure
 cli-table^0.5.00.5.0up to date
 tracing^0.1.440.1.44up to date
 tracing-subscriber^0.3.200.3.23up to date
 toml^1.1.01.1.2+spec-1.1.0up to date
 serde^1.01.0.228up to date
 bdk_bitcoind_rpc^0.21.00.22.0out of date
 bdk_electrum^0.23.20.23.2up to date
 bdk_esplora^0.22.10.22.2up to date
 bdk_kyoto^0.15.40.16.0out of date
 bdk_redb^0.1.10.1.1up to date
 shlex^1.3.01.3.0up to date
 payjoin=1.0.0-rc.10.25.0up to date
 reqwest^0.13.20.13.2up to date
 url^2.5.82.5.8up 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);