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

(17 total, 5 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 base64^0.13.00.22.0out of date
 encoding_rs^0.8.310.8.34up to date
 encoding_rs_io^0.1.70.1.7up to date
 flate2^1.0.241.0.30up to date
 http^0.2.81.1.0out of date
 log^0.4.170.4.21up to date
 mime^0.3.160.3.17up to date
 multipart^0.18.00.18.0up to date
 native-tls^0.2.100.2.11up to date
 rustls-native-certs^0.60.7.0out of date
 rustls ⚠️^0.20.60.23.5out of date
 serde^1.0.1431.0.199up to date
 serde_json^1.0.831.0.116up to date
 serde_urlencoded^0.7.10.7.1up to date
 url^2.2.22.5.0up to date
 webpki ⚠️^0.22.00.22.4maybe insecure
 webpki-roots^0.22.40.26.1out of date

Dev dependencies

(10 total, 3 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.0.611.0.82up to date
 env_logger^0.9.00.11.3out of date
 futures^0.3.230.3.30up to date
 futures-util^0.3.230.3.30up to date
 hyper^0.14.201.3.1out of date
 lazy_static^1.4.01.4.0up to date
 tokio ⚠️^1.20.11.37.0maybe insecure
 tokio-rustls^0.22.00.26.0out of date
 tokio-stream^0.1.90.1.15up 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);

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.