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, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 curl^0.4.250.4.47up 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.27up to date
 native-tls^0.2.80.2.14up to date
 reqwest^0.120.12.15up to date
 rustls^0.23.180.23.26up to date
 sentry-anyhow^0.37.00.37.0up to date
 sentry-backtrace^0.37.00.37.0up to date
 sentry-contexts^0.37.00.37.0up to date
 sentry-core^0.37.00.37.0up to date
 sentry-debug-images^0.37.00.37.0up to date
 sentry-log^0.37.00.37.0up to date
 sentry-panic^0.37.00.37.0up to date
 sentry-slog^0.37.00.37.0up to date
 sentry-tower^0.37.00.37.0up to date
 sentry-tracing^0.37.00.37.0up to date
 serde_json^1.0.481.0.140up to date
 surf^2.0.02.3.2up to date
 tokio ⚠️^1.01.44.2maybe insecure
 ureq^2.10.13.0.11out of date
 webpki-roots^0.26.10.26.8up to date

Dev dependencies

(9 total, 1 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 actix-web^44.10.2up to date
 anyhow^1.0.301.0.98up to date
 log^0.4.80.4.27up to date
 pretty_env_logger^0.5.00.5.0up to date
 slog^2.5.22.7.0up to date
 tokio ⚠️^1.01.44.2maybe insecure
 tower^0.40.5.2out of date
 tracing^0.10.1.41up to date
 tracing-subscriber^0.30.3.19up 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);