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 arrow-flight

Dependencies

(24 total, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.01.0.93up to date
 arrow-arith^53.2.053.2.0up to date
 arrow-array^53.2.053.2.0up to date
 arrow-buffer^53.2.053.2.0up to date
 arrow-cast^53.2.053.2.0up to date
 arrow-data^53.2.053.2.0up to date
 arrow-ipc^53.2.053.2.0up to date
 arrow-ord^53.2.053.2.0up to date
 arrow-row^53.2.053.2.0up to date
 arrow-schema^53.2.053.2.0up to date
 arrow-select^53.2.053.2.0up to date
 arrow-string^53.2.053.2.0up to date
 base64^0.220.22.1up to date
 bytes^11.8.0up to date
 clap^4.4.64.5.21up to date
 futures^0.30.3.31up to date
 once_cell^11.20.2up to date
 paste^1.01.0.15up to date
 prost^0.13.10.13.3up to date
 prost-types^0.13.10.13.3up to date
 tokio ⚠️^1.01.41.1maybe insecure
 tonic^0.12.30.12.3up to date
 tracing-log^0.20.2.0up to date
 tracing-subscriber^0.3.10.3.18up to date

Dev dependencies

(10 total, all up-to-date)

CrateRequiredLatestStatus
 arrow-cast^53.2.053.2.0up to date
 assert_cmd^2.0.82.0.16up to date
 http^1.1.01.1.0up to date
 http-body^1.0.01.0.1up to date
 hyper-util^0.10.1.10up to date
 pin-project-lite^0.20.2.15up to date
 tempfile^3.33.14.0up to date
 tokio-stream^0.10.1.16up to date
 tower^0.5.00.5.1up to date
 uuid^1.10.01.11.0up 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);