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 attohttpc

Dependencies

(16 total, 1 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 base64^0.22.00.22.1up to date
 encoding_rs^0.8.310.8.35up to date
 encoding_rs_io^0.1.70.1.7up to date
 flate2^1.0.241.0.35up to date
 http^11.2.0up to date
 log^0.4.170.4.22up to date
 mime^0.3.160.3.17up to date
 multipart^0.18.00.18.0up to date
 native-tls^0.2.100.2.12up to date
 rustls-native-certs^0.70.8.1out of date
 rustls ⚠️^0.23.00.23.20maybe insecure
 serde^1.0.1431.0.216up to date
 serde_json^1.0.831.0.134up to date
 serde_urlencoded^0.7.10.7.1up to date
 url^2.2.22.5.4up to date
 webpki-roots^0.26.00.26.7up to date

Dev dependencies

(12 total, 3 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.0.611.0.95up to date
 env_logger^0.11.00.11.6up to date
 futures-util^0.3.230.3.31up to date
 http^0.21.2.0out of date
 hyper^0.14.201.5.2out of date
 lazy_static^1.4.01.5.0up to date
 multipart^0.18.00.18.0up to date
 rustls-pemfile^22.2.0up to date
 tokio ⚠️^1.20.11.42.0maybe insecure
 tokio-rustls^0.25.00.26.1out of date
 tokio-stream^0.1.90.1.17up to date
 warp ⚠️^0.3.20.3.7maybe insecure

Security Vulnerabilities

warp: Improper validation of Windows paths could lead to directory traversal attack

RUSTSEC-2022-0082

Path resolution in warp::filters::fs::dir didn't correctly validate Windows paths meaning paths like /foo/bar/c:/windows/web/screen/img101.png would be allowed and respond with the contents of c:/windows/web/screen/img101.png. Thus users could potentially read files anywhere on the filesystem.

This only impacts Windows. Linux and other unix likes are not impacted by this.

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

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.