Affected versions of the OpenSSL crate used structures after they'd been freed.
trust-dns-client 0.21.2
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.
trust-dns-client
(17 total, 1 outdated, 2 possibly insecure)
Crate | Required | Latest | Status |
---|---|---|---|
cfg-if | ^1 | 1.0.0 | up to date |
data-encoding | ^2.2.0 | 2.3.3 | up to date |
futures-channel | ^0.3.5 | 0.3.27 | up to date |
futures-util | ^0.3.5 | 0.3.27 | up to date |
lazy_static | ^1.2.0 | 1.4.0 | up to date |
log | ^0.4 | 0.4.17 | up to date |
openssl ⚠️ | ^0.10 | 0.10.48 | maybe insecure |
radix_trie | ^0.2.0 | 0.2.1 | up to date |
rand | ^0.8 | 0.8.5 | up to date |
ring | ^0.16 | 0.16.20 | up to date |
rustls | ^0.20.0 | 0.20.8 | up to date |
serde | ^1.0 | 1.0.158 | up to date |
thiserror | ^1.0.20 | 1.0.40 | up to date |
time | ^0.3 | 0.3.20 | up to date |
tokio ⚠️ | ^1.0 | 1.26.0 | maybe insecure |
trust-dns-proto | ^0.21.1 | 0.22.0 | out of date |
webpki | ^0.22.0 | 0.22.0 | up to date |
(3 total, 2 possibly insecure)
Crate | Required | Latest | Status |
---|---|---|---|
futures | ^0.3.5 | 0.3.27 | up to date |
openssl ⚠️ | ^0.10 | 0.10.48 | maybe insecure |
tokio ⚠️ | ^1.0 | 1.26.0 | maybe insecure |
openssl
: Use after free in CMS SigningAffected versions of the OpenSSL crate used structures after they'd been freed.
tokio
: reject_remote_clients Configuration corruptionOn 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
.
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);