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 sentry

Dependencies

(25 total, 15 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 curl^0.4.250.4.49up to date
 embedded-svc^0.27.10.28.1out of date
 esp-idf-svc^0.48.10.51.0out of date
 http-client^6.5.36.5.3up to date
 httpdate^1.0.01.0.3up to date
 isahc^0.9.141.7.2out of date
 log^0.4.80.4.28up to date
 native-tls^0.2.80.2.14up to date
 reqwest^0.120.12.23up to date
 rustls^0.23.180.23.31up to date
 sentry-anyhow^0.36.00.42.0out of date
 sentry-backtrace^0.36.00.42.0out of date
 sentry-contexts^0.36.00.42.0out of date
 sentry-core^0.36.00.42.0out of date
 sentry-debug-images^0.36.00.42.0out of date
 sentry-log^0.36.00.42.0out of date
 sentry-panic^0.36.00.42.0out of date
 sentry-slog^0.36.00.42.0out of date
 sentry-tower^0.36.00.42.0out of date
 sentry-tracing^0.36.00.42.0out of date
 serde_json^1.0.481.0.144up to date
 surf^2.0.02.3.2up to date
 tokio ⚠️^1.01.47.1maybe insecure
 ureq^2.10.13.1.2out of date
 webpki-roots^0.26.11.0.2out of date

Dev dependencies

(9 total, 1 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 actix-web^44.11.0up to date
 anyhow^1.0.301.0.99up to date
 log^0.4.80.4.28up to date
 pretty_env_logger^0.5.00.5.0up to date
 slog^2.5.22.7.0up to date
 tokio ⚠️^1.01.47.1maybe insecure
 tower^0.40.5.2out of date
 tracing^0.10.1.41up to date
 tracing-subscriber^0.30.3.20up 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);