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

(36 total, 19 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.8.10.10.0out of date
 webrtc-dtls^0.9.00.11.0out of date
 hex^0.40.4.3up to date
 webrtc-ice^0.10.10.12.0out of date
 interceptor^0.11.00.13.0out of date
 lazy_static^1.41.5.0up to date
 log^0.40.4.27up to date
 webrtc-mdns^0.6.10.8.0out of date
 webrtc-media^0.7.10.9.0out of date
 pem^33.0.5up to date
 rand^0.80.9.1out of date
 rcgen^0.110.13.2out of date
 regex^1.9.51.11.1up to date
 ring ⚠️^0.170.17.14maybe insecure
 rtcp^0.10.10.12.0out of date
 rtp^0.10.00.12.0out of date
 rustls ⚠️^0.210.23.26out of date
 webrtc-sctp^0.9.10.11.0out of date
 sdp^0.6.10.7.0out of 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.12.00.14.0out of date
 stun^0.5.10.7.0out of date
 thiserror^12.0.12out of date
 time^0.30.3.41up to date
 tokio^1.32.01.44.2up to date
 turn^0.7.10.9.0out of date
 url^22.5.4up to date
 webrtc-util^0.8.10.10.0out of date
 waitgroup^0.10.1.2up to date

Dev dependencies

(2 total, 1 outdated)

CrateRequiredLatestStatus
 env_logger^0.100.11.8out of date
 tokio-test^0.40.4.4up to date

Security Vulnerabilities

rustls: `rustls::ConnectionCommon::complete_io` could fall into an infinite loop based on network input

RUSTSEC-2024-0336

If a close_notify alert is received during a handshake, complete_io does not terminate.

Callers which do not call complete_io are not affected.

rustls-tokio and rustls-ffi do not call complete_io and are not affected.

rustls::Stream and rustls::StreamOwned types use complete_io and 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.