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 testcontainers

Dependencies

(18 total, 1 possibly insecure)

CrateRequiredLatestStatus
 async-trait^0.10.1.80up to date
 bollard^0.16.10.16.1up to date
 bollard-stubs=1.44.0-rc.21.41.0up to date
 conquer-once^0.40.4.0up to date
 dirs^5.0.15.0.1up to date
 dns-lookup^2.0.42.0.4up to date
 docker_credential^1.3.11.3.1up to date
 futures^0.30.3.30up to date
 log^0.40.4.21up to date
 parse-display^0.9.00.9.0up to date
 serde^11.0.202up to date
 serde-java-properties^0.2.00.2.0up to date
 serde_json^11.0.117up to date
 serde_with^3.7.03.8.1up to date
 signal-hook^0.30.3.17up to date
 tokio ⚠️^11.37.0maybe insecure
 tokio-util^0.7.100.7.11up to date
 url^22.5.0up to date

Dev dependencies

(3 total, 1 possibly insecure)

CrateRequiredLatestStatus
 pretty_env_logger^0.50.5.0up to date
 reqwest^0.12.30.12.4up 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);