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 curlz

Dependencies

(20 total, 6 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 env_logger^0.100.11.3out of date
 log^0.40.4.21up to date
 clap^4.24.5.4up to date
 clap-verbosity-flag^2.02.2.0up to date
 serde^1.01.0.200up to date
 serde_yaml^0.90.9.34+deprecatedup to date
 dotenvy^0.150.15.7up to date
 anyhow^1.01.0.82up to date
 convert_case^0.60.6.0up to date
 dialoguer^0.100.11.0out of date
 filenamify^0.10.1.0up to date
 chrono ⚠️^0.40.4.38maybe insecure
 humantime^2.12.1.0up to date
 minijinja^0.322.0.1out of date
 jsonwebtoken^8.39.3.0out of date
 serde_json^1.01.0.116up to date
 base64^0.210.22.1out of date
 pest^2.62.7.10up to date
 pest_derive^2.62.7.10up to date
 minijinja-stack-ref^0.321.0.21out of date

Dev dependencies

(9 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 insta^11.38.0up to date
 tempfile^3.53.10.1up to date
 assert_cmd^2.02.0.14up to date
 predicates^3.03.1.0up to date
 rstest^0.170.19.0out of date
 wiremock^0.50.6.0out of date
 tokio ⚠️^11.37.0maybe insecure
 indoc^22.0.5up to date
 pretty_assertions^11.4.0up to date

Security Vulnerabilities

chrono: Potential segfault in `localtime_r` invocations

RUSTSEC-2020-0159

Impact

Unix-like operating systems may segfault due to dereferencing a dangling pointer in specific circumstances. This requires an environment variable to be set in a different thread than the affected functions. This may occur without the user's knowledge, notably in a third-party library.

Workarounds

No workarounds are known.

References

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);