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 secret-service

Dependencies

(12 total, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 aes^0.7.00.8.4out of date
 block-modes^0.8.00.9.1out of date
 futures-util^0.30.3.30up to date
 generic-array^0.141.0.0out of date
 hkdf^0.12.00.12.4up to date
 num^0.4.00.4.2up to date
 once_cell^11.19.0up to date
 openssl ⚠️^0.10.400.10.64maybe insecure
 rand^0.8.10.8.5up to date
 serde^1.01.0.200up to date
 sha2^0.10.00.10.8up to date
 zbus^3.74.2.0out of date

Dev dependencies

(2 total, 1 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 test-with^0.80.12.6out of date
 tokio ⚠️^11.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.