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 status-list-server

Dependencies

(64 total, 6 outdated, 4 possibly insecure)

CrateRequiredLatestStatus
 tokio ⚠️^1.51.53.1maybe insecure
 async-trait^0.10.1.92up to date
 arc-swap^1.91.9.2up to date
 notify^8.28.2.0up to date
 hyper^1.101.11.1up to date
 hyper-util^0.10.1.20up to date
 reqwest^0.130.13.5up to date
 tower^0.50.5.3up to date
 hyper-rustls^0.270.27.9up to date
 axum^0.80.8.9up to date
 tower-http^0.70.7.1up to date
 tower_governor^0.80.8.0up to date
 governor^0.100.10.4up to date
 moka^0.120.12.16up to date
 rand^0.100.10.2up to date
 pem^34.0.0out of date
 coset^0.40.4.2up to date
 instant-acme^0.80.8.5up to date
 rustls ⚠️^0.230.23.44maybe insecure
 webpki-roots^11.0.9up to date
 rustls-pki-types^1.151.15.1up to date
 secrecy^0.100.10.3up to date
 rcgen^0.140.14.10up to date
 jsonwebtoken^10.411.0.0out of date
 sha2^0.100.11.0out of date
 hex^0.40.4.3up to date
 serde_json^1.01.0.151up to date
 serde-aux^4.74.7.0up to date
 serde^1.01.0.229up to date
 config^0.150.15.25up to date
 dotenvy^0.150.15.7up to date
 tracing^0.10.1.44up to date
 tracing-subscriber ⚠️^0.30.3.23maybe insecure
 opentelemetry^0.320.32.0up to date
 opentelemetry_sdk^0.320.32.1up to date
 opentelemetry-otlp^0.320.32.0up to date
 opentelemetry-appender-tracing^0.320.32.0up to date
 tracing-opentelemetry^0.330.33.0up to date
 opentelemetry-prometheus^0.320.32.0up to date
 prometheus^0.140.14.0up to date
 metrics-process^2.42.4.3up to date
 thiserror^2.02.0.20up to date
 color-eyre^0.60.6.5up to date
 uuid^1.231.26.1up to date
 base64^0.220.23.1out of date
 time ⚠️^0.30.3.55maybe insecure
 base64url^0.10.1.0up to date
 flate2^1.11.1.10up to date
 x509-parser^0.180.18.1up to date
 public-suffix^0.10.1.3up to date
 tokio-cron-scheduler^0.150.15.1up to date
 url^2.52.5.8up to date
 sea-orm^1.12.0.2out of date
 sea-orm-migration^1.1.202.0.2out of date
 aws-config^11.12.0up to date
 aws-sdk-route53^11.122.0up to date
 aws-sdk-secretsmanager^11.115.0up to date
 google-cloud-secretmanager-v1^11.13.0up to date
 google-cloud-auth^11.16.0up to date
 azure_security_keyvault_secrets^11.0.1up to date
 azure_identity^11.0.0up to date
 azure_core^11.1.0up to date
 p256^0.140.14.0up to date
 tikv-jemallocator^0.70.7.0up to date

Dev dependencies

(4 total, 1 outdated)

CrateRequiredLatestStatus
 rcgen^0.140.14.10up to date
 wiremock^0.60.6.5up to date
 sea-orm^1.12.0.2out of date
 testcontainers-modules^0.150.15.0up to 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);

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.

tracing-subscriber: Logging user input may result in poisoning logs with ANSI escape sequences

RUSTSEC-2025-0055

Previous versions of tracing-subscriber were vulnerable to ANSI escape sequence injection attacks. Untrusted user input containing ANSI escape sequences could be injected into terminal output when logged, potentially allowing attackers to:

  • Manipulate terminal title bars
  • Clear screens or modify terminal display
  • Potentially mislead users through terminal manipulation

In isolation, impact is minimal, however security issues have been found in terminal emulators that enabled an attacker to use ANSI escape sequences via logs to exploit vulnerabilities in the terminal emulator.

This was patched in PR #3368 to escape ANSI control characters from user input.

time: Denial of Service via Stack Exhaustion

RUSTSEC-2026-0009

Impact

When user-provided input is provided to any type that parses with the RFC 2822 format, a denial of service attack via stack exhaustion is possible. The attack relies on formally deprecated and rarely-used features that are part of the RFC 2822 format used in a malicious manner. Ordinary, non-malicious input will never encounter this scenario.

Patches

A limit to the depth of recursion was added in v0.3.47. From this version, an error will be returned rather than exhausting the stack.

Workarounds

Limiting the length of user input is the simplest way to avoid stack exhaustion, as the amount of the stack consumed would be at most a factor of the length of the input.