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 threatflux

Dependencies

(21 total, 5 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 reqwest^0.110.12.23out of date
 tokio ⚠️^1.01.47.1maybe insecure
 serde^1.01.0.219up to date
 serde_json^1.01.0.143up to date
 thiserror^1.02.0.16out of date
 anyhow^1.01.0.99up to date
 dotenv^0.150.15.0up to date
 tracing^0.10.1.41up to date
 tracing-subscriber^0.30.3.20up to date
 url^2.42.5.7up to date
 base64^0.210.22.1out of date
 uuid^1.01.18.1up to date
 chrono ⚠️^0.40.4.41maybe insecure
 futures^0.30.3.31up to date
 tokio-stream^0.10.1.17up to date
 backoff^0.40.4.0up to date
 governor^0.50.10.1out of date
 nonzero_ext^0.30.3.0up to date
 http^0.21.3.1out of date
 mime^0.30.3.17up to date
 mime_guess^2.02.0.5up to date

Dev dependencies

(9 total, 1 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 tokio-test^0.40.4.4up to date
 mockito^1.01.7.0up to date
 tempfile^3.03.21.0up to date
 wiremock^0.50.6.5out of date
 pretty_assertions^1.41.4.1up to date
 serde_json^1.01.0.143up to date
 tokio ⚠️^1.01.47.1maybe insecure
 futures-util^0.30.3.31up to date
 async-std^1.121.13.2up 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);