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 quinn

Dependencies

(14 total, 1 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 async-io^22.6.0up to date
 async-std^1.111.13.2up to date
 bytes^11.11.0up to date
 futures-io^0.3.190.3.31up to date
 pin-project-lite^0.20.2.16up to date
 quinn-proto^0.11.70.11.13up to date
 rustc-hash^22.1.1up to date
 rustls ⚠️^0.23.50.23.35maybe insecure
 smol^22.0.2up to date
 socket2^0.50.6.1out of date
 thiserror^2.0.32.0.17up to date
 tokio^1.28.11.48.0up to date
 tracing^0.1.100.1.43up to date
 quinn-udp^0.50.5.14up to date

Dev dependencies

(12 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.0.221.0.100up to date
 bencher^0.1.50.1.5up to date
 clap^44.5.53up to date
 crc^33.4.0up to date
 directories-next^22.0.0up to date
 rand^0.80.9.2out of date
 rcgen^0.130.14.6out of date
 rustls-pemfile^22.2.0up to date
 tokio^1.28.11.48.0up to date
 tracing-futures^0.2.00.2.5up to date
 tracing-subscriber ⚠️^0.3.00.3.22maybe insecure
 url^22.5.7up to date

Security Vulnerabilities

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.