This project contains known security vulnerabilities. Find detailed information at the bottom.

Crate actix-web

Dependencies

(28 total, 19 outdated, 4 insecure)

CrateRequiredLatestStatus
 actix-codec ⚠️^0.1.20.5.4insecure
 actix-http ⚠️^0.2.93.13.6insecure
 actix-router^0.1.50.5.4out of date
 actix-rt^0.2.42.15.0out of date
 actix-server^0.6.02.9.5out of date
 actix-server-config^0.1.20.2.0out of date
 actix-service^0.4.12.0.3out of date
 actix-threadpool^0.1.10.3.3out of date
 actix-utils^0.4.43.0.2out of date
 actix-web-codegen^0.1.24.3.0out of date
 awc^0.2.43.8.2out of date
 bytes^0.41.12.1out of date
 derive_more^0.15.02.1.1out of date
 encoding_rs^0.80.8.41up to date
 futures^0.1.250.3.34out of date
 hashbrown^0.5.00.17.1out of date
 log^0.40.4.34up to date
 mime^0.30.3.17up to date
 net2^0.2.330.2.39up to date
 openssl^0.100.10.81up to date
 parking_lot^0.90.12.5out of date
 regex^1.01.13.1up to date
 rustls ⚠️^0.150.23.45insecure
 serde^1.01.0.229up to date
 serde_json^1.01.0.151up to date
 serde_urlencoded^0.6.10.7.1out of date
 time ⚠️^0.1.420.3.55insecure
 url^2.12.5.8up to date

Dev dependencies

(9 total, 5 outdated)

CrateRequiredLatestStatus
 actix^0.8.30.13.5out of date
 actix-connect^0.2.22.0.0out of date
 actix-http-test^0.2.43.2.0out of date
 brotli2^0.3.20.3.2up to date
 env_logger^0.60.11.11out of date
 flate2^1.0.21.1.10up to date
 rand^0.70.10.2out of date
 serde_derive^1.01.0.229up to date
 tokio-timer^0.2.80.2.13up to date

Security Vulnerabilities

actix-http: Use-after-free in BodyStream due to lack of pinning

RUSTSEC-2020-0048

Affected versions of this crate did not require the buffer wrapped in BodyStream 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 trait MessageBody require Unpin and making poll_next() function accept Pin<&mut Self> instead of &mut self.

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.

time: Potential segfault in the time crate

RUSTSEC-2020-0071

Impact

The affected functions set environment variables without synchronization. On Unix-like operating systems, this can crash in multithreaded programs. Programs may segfault due to dereferencing a dangling pointer if an environment variable is read in a different thread than the affected functions. This may occur without the user's knowledge, notably in the Rust standard library or third-party libraries.

The affected functions from time 0.2.7 through 0.2.22 are:

  • time::UtcOffset::local_offset_at
  • time::UtcOffset::try_local_offset_at
  • time::UtcOffset::current_local_offset
  • time::UtcOffset::try_current_local_offset
  • time::OffsetDateTime::now_local
  • time::OffsetDateTime::try_now_local

The affected functions in time 0.1 (all versions) are:

  • time::at_utc
  • time::at
  • time::now
  • time::tzset

Non-Unix targets (including Windows and wasm) are unaffected.

Patches

Pending a proper fix, the internal method that determines the local offset has been modified to always return None on the affected operating systems. This has the effect of returning an Err on the try_* methods and UTC on the non-try_* methods.

Users and library authors with time in their dependency tree should perform cargo update, which will pull in the updated, unaffected code.

Users of time 0.1 do not have a patch and should upgrade to an unaffected version: time 0.2.23 or greater or the 0.3 series.

Workarounds

A possible workaround for crates affected through the transitive dependency in chrono, is to avoid using the default oldtime feature dependency of the chrono crate by disabling its default-features and manually specifying the required features instead.

Examples:

Cargo.toml:

chrono = { version = "0.4", default-features = false, features = ["serde"] }
chrono = { version = "0.4.22", default-features = false, features = ["clock"] }

Commandline:

cargo add chrono --no-default-features -F clock

Sources:

actix-http: Potential request smuggling capabilities due to lack of input validation

RUSTSEC-2021-0081

Affected versions of this crate did not properly detect invalid requests that could allow HTTP/1 request smuggling (HRS) attacks when running alongside a vulnerable front-end proxy server. This can result in leaked internal and/or user data, including credentials, when the front-end proxy is also vulnerable.

Popular front-end proxies and load balancers already mitigate HRS attacks so it is recommended that they are also kept up to date; check your specific set up. You should upgrade even if the front-end proxy receives exclusively HTTP/2 traffic and connects to the back-end using HTTP/1; several downgrade attacks are known that can also expose HRS vulnerabilities.

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.