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 aws-smithy-experimental

Dependencies

(15 total, 1 outdated, 3 possibly insecure)

CrateRequiredLatestStatus
 aws-smithy-async^1.2.11.2.5up to date
 aws-smithy-runtime^1.7.11.8.4up to date
 aws-smithy-runtime-api^1.7.21.8.3up to date
 aws-smithy-types^1.2.41.3.2up to date
 h2 ⚠️^0.40.4.11maybe insecure
 http^11.3.1up to date
 hyper^11.6.0up to date
 hyper-rustls^0.270.27.7up to date
 hyper-util^0.1.70.1.15up to date
 once_cell^1.18.01.21.3up to date
 pin-project-lite^0.2.130.2.16up to date
 rustls ⚠️^0.230.23.29maybe insecure
 tokio ⚠️^11.46.1maybe insecure
 tower^0.4.10.5.2out of date
 tracing^0.1.400.1.41up to date

Dev dependencies

(3 total, 1 possibly insecure)

CrateRequiredLatestStatus
 aws-smithy-async^1.2.11.2.5up to date
 aws-smithy-runtime^1.7.11.8.4up to date
 tokio ⚠️^11.46.1maybe insecure

Security Vulnerabilities

tokio: reject_remote_clients Configuration corruption

RUSTSEC-2023-0001

On 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.

Workarounds

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);

h2: Degradation of service in h2 servers with CONTINUATION Flood

RUSTSEC-2024-0332

An attacker can send a flood of CONTINUATION frames, causing h2 to process them indefinitely. This results in an increase in CPU usage.

Tokio task budget helps prevent this from a complete denial-of-service, as the server can still respond to legitimate requests, albeit with increased latency.

More details at "https://seanmonstar.com/blog/hyper-http2-continuation-flood/.

Patches available for 0.4.x and 0.3.x versions.

rustls: rustls network-reachable panic in `Acceptor::accept`

RUSTSEC-2024-0399

A bug introduced in rustls 0.23.13 leads to a panic if the received TLS ClientHello is fragmented. Only servers that use rustls::server::Acceptor::accept() are affected.

Servers that use tokio-rustls's LazyConfigAcceptor API are affected.

Servers that use tokio-rustls's TlsAcceptor API are not affected.

Servers that use rustls-ffi's rustls_acceptor_accept API are affected.