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 boh

Dependencies

(27 total, 12 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.01.0.93up to date
 async-scoped^0.70.9.0out of date
 base64^0.210.22.1out of date
 bytes^1.01.8.0up to date
 camino^1.11.1.9up to date
 clap^4.04.5.21up to date
 futures-util^0.30.3.31up to date
 http^0.21.1.0out of date
 memmap2^0.50.9.5out of date
 nu-ansi-term^0.470.50.1out of date
 number_prefix^0.40.4.0up to date
 openssl ⚠️^0.100.10.68maybe insecure
 rayon^1.51.10.0up to date
 reqwest^0.110.12.9out of date
 ring^0.160.17.8out of date
 serde^1.01.0.215up to date
 serde_json^1.01.0.133up to date
 serde_yaml^0.90.9.34+deprecatedup to date
 symbolic-common^10.012.12.1out of date
 symbolic-debuginfo^10.012.12.1out of date
 tame-gcs^0.120.13.0out of date
 tame-oauth^0.80.10.0out of date
 time^0.30.3.36up to date
 tokio ⚠️^1.01.41.1maybe insecure
 url^2.22.5.3up to date
 walkdir^2.32.5.0up to date
 zstd^0.120.13.2out of 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);

openssl: `MemBio::get_buf` has undefined behavior with empty buffers

RUSTSEC-2024-0357

Previously, MemBio::get_buf called slice::from_raw_parts with a null-pointer, which violates the functions invariants, leading to undefined behavior. In debug builds this would produce an assertion failure. This is now fixed.