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 azure_identity

Dependencies

(14 total, 1 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 async-lock^3.03.3.0up to date
 async-trait^0.10.1.80up to date
 azure_core^0.170.20.0out of date
 futures^0.30.3.30up to date
 log^0.40.4.21up to date
 oauth2^4.0.04.4.2up to date
 openssl ⚠️^0.10.460.10.64maybe insecure
 pin-project^1.01.1.5up to date
 serde^1.01.0.200up to date
 serde_json^1.01.0.116up to date
 time^0.3.100.3.36up to date
 tz-rs^0.60.6.14up to date
 url^2.22.5.0up to date
 uuid^1.01.8.0up to date

Dev dependencies

(5 total, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 env_logger^0.100.11.3out of date
 reqwest^0.110.12.4out of date
 serde_test^11.0.176up to date
 serial_test^2.03.1.1out of date
 tokio ⚠️^1.01.37.0maybe insecure

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

openssl: `openssl` `X509VerifyParamRef::set_host` buffer over-read

RUSTSEC-2023-0044

When this function was passed an empty string, openssl would attempt to call strlen on it, reading arbitrary memory until it reached a NUL byte.