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, 18 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 arc-swap^11.7.1up to date
 async-trait^0.10.1.89up to date
 bytes^11.10.1up to date
 cfg-if^11.0.3up to date
 webrtc-data^0.10.00.11.0out of date
 webrtc-dtls^0.11.00.12.0out of date
 hex^0.40.4.3up to date
 webrtc-ice^0.12.00.13.0out of date
 interceptor^0.13.00.14.0out of date
 lazy_static^1.41.5.0up to date
 log^0.40.4.28up to date
 webrtc-mdns^0.8.00.9.0out of date
 webrtc-media^0.9.00.10.0out of date
 pem^33.0.5up to date
 portable-atomic^1.61.11.1up to date
 rand^0.80.9.2out of date
 rcgen^0.130.14.4out of date
 regex^1.9.51.11.2up to date
 ring ⚠️^0.170.17.14maybe insecure
 rtcp^0.12.00.13.0out of date
 rtp^0.12.00.13.0out of date
 rustls ⚠️^0.23.100.23.31maybe insecure
 webrtc-sctp^0.11.00.12.0out of date
 sdp^0.7.00.8.0out of date
 serde^11.0.225up to date
 serde_json^11.0.145up to date
 sha2^0.100.10.9up to date
 smol_str^0.20.3.2out of date
 webrtc-srtp^0.14.00.15.0out of date
 stun^0.7.00.8.0out of date
 thiserror^12.0.16out of date
 time^0.30.3.43up to date
 tokio^1.32.01.47.1up to date
 turn^0.9.00.10.0out of date
 url^22.5.7up to date
 webrtc-util^0.10.00.11.0out of 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.