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 actix-net

Dependencies

(24 total, 12 outdated, 4 possibly insecure)

CrateRequiredLatestStatus
 actix^0.7.60.13.3out of date
 bytes^0.41.6.0out of date
 futures^0.10.3.30out of date
 log^0.40.4.21up to date
 mio^0.6.130.8.11out of date
 native-tls^0.20.2.11up to date
 net2^0.20.2.39up to date
 num_cpus^1.01.16.0up to date
 openssl ⚠️^0.100.10.64maybe insecure
 rustls ⚠️^0.140.23.5out of date
 slab^0.40.4.9up to date
 tokio ⚠️^0.11.37.0out of date
 tokio-codec^0.10.1.2up to date
 tokio-current-thread^0.10.1.7up to date
 tokio-io^0.10.1.13up to date
 tokio-openssl^0.20.6.4out of date
 tokio-reactor^0.10.1.12up to date
 tokio-rustls^0.80.26.0out of date
 tokio-tcp^0.10.1.4up to date
 tokio-timer^0.20.2.13up to date
 tower-service^0.10.3.2out of date
 trust-dns-resolver^0.10.20.23.2out of date
 webpki ⚠️^0.180.22.4out of date
 webpki-roots^0.150.26.1out of date

Dev dependencies

(1 total, 1 outdated)

CrateRequiredLatestStatus
 env_logger^0.50.11.3out of date

Security Vulnerabilities

tokio: Data race when sending and receiving after closing a `oneshot` channel

RUSTSEC-2021-0124

If 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 awaited 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 awaited and try_recv is not called after calling close, is not affected.

See tokio#4225 for more details.

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.

webpki: webpki: CPU denial of service in certificate path building

RUSTSEC-2023-0052

When this crate is given a pathological certificate chain to validate, it will spend CPU time exponential with the number of candidate certificates at each step of path building.

Both TLS clients and TLS servers that accept client certificate are affected.

This was previously reported in https://github.com/briansmith/webpki/issues/69 and re-reported recently by Luke Malinowski.

webpki 0.22.1 included a partial fix and webpki 0.22.2 added further fixes.

rustls: `rustls::ConnectionCommon::complete_io` could fall into an infinite loop based on network input

RUSTSEC-2024-0336

If a close_notify alert is received during a handshake, complete_io does not terminate.

Callers which do not call complete_io are not affected.

rustls-tokio and rustls-ffi do not call complete_io and are not affected.

rustls::Stream and rustls::StreamOwned types use complete_io and are affected.