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, 5 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 base64^0.21.20.22.1out of 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.34up to date
 http^0.2.81.1.0out of 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.60.8.0out of date
 rustls ⚠️^0.21.00.23.16out of date
 serde^1.0.1431.0.214up to date
 serde_json^1.0.831.0.132up to date
 serde_urlencoded^0.7.10.7.1up to date
 url^2.2.22.5.3up to date
 webpki-roots^0.25.10.26.6out of date

Dev dependencies

(12 total, 4 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.0.611.0.93up to date
 env_logger^0.10.00.11.5out of date
 futures^0.3.230.3.31up to date
 futures-util^0.3.230.3.31up to date
 hyper^0.14.201.5.0out of date
 lazy_static^1.4.01.5.0up to date
 multipart^0.18.00.18.0up to date
 rustls-pemfile^1.0.32.2.0out of date
 tokio ⚠️^1.20.11.41.1maybe insecure
 tokio-rustls^0.24.10.26.0out of date
 tokio-stream^0.1.90.1.16up 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::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.