Affected versions of the OpenSSL crate used structures after they'd been freed.
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.
async-tungstenite
(18 total, 4 outdated, 2 possibly insecure)
Crate | Required | Latest | Status |
---|---|---|---|
async-std | ^1.0 | 1.11.0 | up to date |
futures-io | ^0.3 | 0.3.21 | up to date |
futures-util | ^0.3 | 0.3.21 | up to date |
gio | ^0.14 | 0.15.11 | out of date |
glib | ^0.14 | 0.15.11 | out of date |
log | ^0.4 | 0.4.17 | up to date |
openssl ⚠️ | ^0.10 | 0.10.40 | maybe insecure |
pin-project-lite | ^0.2 | 0.2.9 | up to date |
async-native-tls | ^0.3.0 | 0.4.0 | out of date |
async-tls | ^0.11 | 0.11.0 | up to date |
native-tls | ^0.2 | 0.2.10 | up to date |
tokio-native-tls | ^0.3 | 0.3.0 | up to date |
tokio-openssl | ^0.6 | 0.6.3 | up to date |
tokio-rustls | ^0.23 | 0.23.4 | up to date |
rustls-native-certs | ^0.6 | 0.6.2 | up to date |
tokio ⚠️ | ^1.0 | 1.18.2 | maybe insecure |
tungstenite | ^0.16.0 | 0.17.2 | out of date |
webpki-roots | ^0.22 | 0.22.3 | up to date |
(5 total, 1 possibly insecure)
Crate | Required | Latest | Status |
---|---|---|---|
async-std | ^1.0 | 1.11.0 | up to date |
env_logger | ^0.9 | 0.9.0 | up to date |
futures | ^0.3 | 0.3.21 | up to date |
tokio ⚠️ | ^1.0 | 1.18.2 | maybe insecure |
url | ^2.0.0 | 2.2.2 | up to date |
openssl
: Use after free in CMS SigningAffected versions of the OpenSSL crate used structures after they'd been freed.
tokio
: Data race when sending and receiving after closing a `oneshot` channelIf a tokio::sync::oneshot
channel is closed (via the
oneshot::Receiver::close
method), a data race may occur if the
oneshot::Sender::send
method is called while the corresponding
oneshot::Receiver
is await
ed or calling try_recv
.
When these methods are called concurrently on a closed channel, the two halves of the channel can concurrently access a shared memory location, resulting in a data race. This has been observed to cause memory corruption.
Note that the race only occurs when both halves of the channel are used
after the Receiver
half has called close
. Code where close
is not used, or where the
Receiver
is not await
ed and try_recv
is not called after calling close
,
is not affected.
See tokio#4225 for more details.