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-server

Dependencies

(21 total, 10 outdated, 3 possibly insecure)

CrateRequiredLatestStatus
 actix-rt^0.2.12.10.0out of date
 actix-server-config^0.1.10.2.0out of date
 actix-service^0.4.02.0.3out of date
 futures^0.10.3.31out of date
 log^0.40.4.27up to date
 mio^0.6.131.0.4out of date
 native-tls^0.20.2.14up to date
 net2^0.20.2.39up to date
 num_cpus^1.01.17.0up to date
 openssl ⚠️^0.100.10.73maybe insecure
 rustls ⚠️^0.15.20.23.29out of date
 slab^0.40.4.10up to date
 tokio-io^0.10.1.13up to date
 tokio-openssl^0.30.6.5out of date
 tokio-reactor^0.10.1.12up to date
 tokio-rustls^0.9.10.26.2out of date
 tokio-signal^0.20.2.9up to date
 tokio-tcp^0.10.1.4up to date
 tokio-timer^0.2.80.2.13up to date
 webpki ⚠️^0.190.22.4out of date
 webpki-roots^0.161.0.1out of date

Dev dependencies

(3 total, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 actix-codec ⚠️^0.1.20.5.2out of date
 bytes^0.41.10.1out of date
 env_logger^0.60.11.8out of date

Security Vulnerabilities

actix-codec: Use-after-free in Framed due to lack of pinning

RUSTSEC-2020-0049

Affected versions of this crate did not require the buffer wrapped in Framed to be pinned, but treated it as if it had a fixed location in memory. This may result in a use-after-free.

The flaw was corrected by making the affected functions accept Pin<&mut Self> instead of &mut self.

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.

openssl: Use-After-Free in `Md::fetch` and `Cipher::fetch`

RUSTSEC-2025-0022

When a Some(...) value was passed to the properties argument of either of these functions, a use-after-free would result.

In practice this would nearly always result in OpenSSL treating the properties as an empty string (due to CString::drop's behavior).

The maintainers thank quitbug for reporting this vulnerability to us.