This project contains known security vulnerabilities. Find detailed information at the bottom.

Crate turn

Dependencies

(11 total, 7 outdated, 1 insecure)

CrateRequiredLatestStatus
 anyhow^1.0.411.0.104up to date
 async-trait^0.10.1.92up to date
 base64^0.13.00.23.1out of date
 log^0.40.4.34up to date
 md-5^0.9.10.11.0out of date
 rand^0.8.20.10.3out of date
 ring ⚠️^0.16.190.17.14insecure
 stun^0.3.10.17.2out of date
 thiserror^1.0.252.0.20out of date
 tokio^1.01.53.1up to date
 webrtc-util^0.4.10.17.2out of date

Dev dependencies

(5 total, 2 outdated)

CrateRequiredLatestStatus
 chrono^0.4.190.4.45up to date
 clap^24.6.7out of date
 env_logger^0.80.11.11out of date
 hex^0.4.20.4.3up to date
 tokio-test^0.40.4.5up to date

Security Vulnerabilities

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.