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 rustls-acme

Dependencies

(23 total, 3 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 async-io^2.3.02.6.0up to date
 async-trait^0.1.530.1.89up to date
 async-web-client^0.6.20.6.2up to date
 aws-lc-rs^1.5.21.14.0up to date
 axum-server^0.70.7.2up to date
 base64^0.220.22.1up to date
 blocking^1.4.11.6.2up to date
 chrono^0.4.240.4.42up to date
 futures^0.3.210.3.31up to date
 futures-rustls^0.260.26.0up to date
 http^11.3.1up to date
 log^0.4.170.4.28up to date
 pem^3.0.33.0.5up to date
 rcgen^0.130.14.4out of date
 ring ⚠️^0.17.70.17.14maybe insecure
 serde^1.0.1371.0.225up to date
 serde_json^1.0.811.0.145up to date
 thiserror^22.0.16up to date
 tokio ⚠️^1.20.11.47.1maybe insecure
 tokio-util^0.7.30.7.16up to date
 tower-service^0.3.30.3.3up to date
 webpki-roots^0.261.0.2out of date
 x509-parser^0.160.18.0out of date

Dev dependencies

(15 total, 3 outdated)

CrateRequiredLatestStatus
 axum^0.80.8.4up to date
 bytes^1.6.01.10.1up to date
 clap^3.1.184.5.47out of date
 http-body-util^0.1.10.1.3up to date
 hyper^1.3.11.7.0up to date
 hyper-util^0.1.30.1.17up to date
 macro_rules_attribute^0.2.00.2.2up to date
 simple_logger^4.3.35.0.0out of date
 smol^2.0.02.0.2up to date
 smol-macros^0.1.00.1.1up to date
 tokio^1.35.11.47.1up to date
 tokio-rustls^0.260.26.3up to date
 tokio-stream^0.1.140.1.17up to date
 tokio-util^0.7.100.7.16up to date
 warp^0.3.70.4.2out of date

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

ring: Some AES functions may panic when overflow checking is enabled.

RUSTSEC-2025-0009

ring::aead::quic::HeaderProtectionKey::new_mask() may panic when overflow checking is enabled. In the QUIC protocol, an attacker can induce this panic by sending a specially-crafted packet. Even unintentionally it is likely to occur in 1 out of every 2**32 packets sent and/or received.

On 64-bit targets operations using ring::aead::{AES_128_GCM, AES_256_GCM} may panic when overflow checking is enabled, when encrypting/decrypting approximately 68,719,476,700 bytes (about 64 gigabytes) of data in a single chunk. Protocols like TLS and SSH are not affected by this because those protocols break large amounts of data into small chunks. Similarly, most applications will not attempt to encrypt/decrypt 64GB of data in one chunk.

Overflow checking is not enabled in release mode by default, but RUSTFLAGS="-C overflow-checks" or overflow-checks = true in the Cargo.toml profile can override this. Overflow checking is usually enabled by default in debug mode.