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 webrtc

Dependencies

(37 total, 3 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 arc-swap^11.7.1up to date
 async-trait^0.10.1.88up to date
 bytes^11.10.1up to date
 cfg-if^11.0.0up to date
 webrtc-data^0.10.00.10.0up to date
 webrtc-dtls^0.11.00.11.0up to date
 hex^0.40.4.3up to date
 webrtc-ice^0.12.00.12.0up to date
 interceptor^0.13.00.13.0up to date
 lazy_static^1.41.5.0up to date
 log^0.40.4.27up to date
 webrtc-mdns^0.8.00.8.0up to date
 webrtc-media^0.9.00.9.0up to date
 pem^33.0.5up to date
 portable-atomic^1.61.11.0up to date
 rand^0.80.9.0out of date
 rcgen^0.130.13.2up to date
 regex^1.9.51.11.1up to date
 ring ⚠️^0.170.17.14maybe insecure
 rtcp^0.12.00.12.0up to date
 rtp^0.12.00.12.0up to date
 rustls ⚠️^0.23.100.23.26maybe insecure
 webrtc-sctp^0.11.00.11.0up to date
 sdp^0.7.00.7.0up to date
 serde^11.0.219up to date
 serde_json^11.0.140up to date
 sha2^0.100.10.8up to date
 smol_str^0.20.3.2out of date
 webrtc-srtp^0.14.00.14.0up to date
 stun^0.7.00.7.0up to date
 thiserror^12.0.12out of date
 time^0.30.3.41up to date
 tokio^1.32.01.44.2up to date
 turn^0.9.00.9.0up to date
 url^22.5.4up to date
 webrtc-util^0.10.00.10.0up to date
 waitgroup^0.10.1.2up to date

Dev dependencies

(2 total, all up-to-date)

CrateRequiredLatestStatus
 env_logger^0.11.30.11.8up to date
 tokio-test^0.40.4.4up 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.

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.