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 gooseberry

Dependencies

(25 total, 4 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 hypothesis^0.11.10.11.1up to date
 tokio ⚠️^1.20.11.37.0maybe insecure
 url^2.2.22.5.0up to date
 urlencoding^2.1.32.1.3up to date
 clap^4.4.124.5.4up to date
 clap_complete^4.4.54.5.2up to date
 sled^0.34.70.34.7up to date
 confy^0.4.00.6.1out of date
 directories-next^1.0.12.0.0out of date
 eyre ⚠️^0.6.110.6.12maybe insecure
 color-eyre^0.6.20.6.3up to date
 thiserror^1.0.531.0.58up to date
 serde^1.0.1931.0.198up to date
 serde_json^1.0.1081.0.116up to date
 serde_derive^1.0.1931.0.198up to date
 ciborium^0.2.10.2.2up to date
 chrono^0.4.310.4.38up to date
 chrono-english^0.1.70.1.7up to date
 skim^0.10.40.10.4up to date
 dialoguer^0.11.00.11.0up to date
 bat^0.24.00.24.0up to date
 indicatif^0.17.70.17.8up to date
 handlebars^4.3.75.1.2out of date
 sanitize-filename^0.5.00.5.0up to date
 handlebars_misc_helpers^0.13.00.15.0out of date

Dev dependencies

(5 total, all up-to-date)

CrateRequiredLatestStatus
 assert_cmd^2.0.122.0.14up to date
 predicates^3.0.43.1.0up to date
 tempfile^3.9.03.10.1up to date
 dotenv^0.15.00.15.0up to date
 futures^0.3.300.3.30up 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);

eyre: Parts of Report are dropped as the wrong type during downcast

RUSTSEC-2024-0021

In affected versions, after a Report is constructed using wrap_err or wrap_err_with to attach a message of type D onto an error of type E, then using downcast to recover ownership of either the value of type D or the value of type E, one of two things can go wrong:

  • If downcasting to E, there remains a value of type D to be dropped. It is incorrectly "dropped" by running E's drop behavior, rather than D's. For example if D is &str and E is std::io::Error, there would be a call of std::io::Error::drop in which the reference received by the Drop impl does not refer to a valid value of type std::io::Error, but instead to &str.

  • If downcasting to D, there remains a value of type E to be dropped. When D and E do not happen to be the same size, E's drop behavior is incorrectly executed in the wrong location. The reference received by the Drop impl may point left or right of the real E value that is meant to be getting dropped.

In both cases, when the Report contains an error E that has nontrivial drop behavior, the most likely outcome is memory corruption.

When the Report contains an error E that has trivial drop behavior (for example a Utf8Error) but where D has nontrivial drop behavior (such as String), the most likely outcome is that downcasting to E would leak D.