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 turn-types

No external dependencies! 🙌

Crate turn-client-proto

Dev dependencies

(3 total, all up-to-date)

CrateRequiredLatestStatus
 clap^44.5.53up to date
 rcgen^0.140.14.6up to date
 sans-io-time^0.10.1.2up to date

Crate turn-server-proto

Dependencies

(3 total, 1 possibly insecure)

CrateRequiredLatestStatus
 pnet_packet^0.350.35.0up to date
 rand^0.90.9.2up to date
 smallvec ⚠️^11.15.1maybe insecure

Crate turn-fuzz

Dependencies

(3 total, 1 possibly insecure)

CrateRequiredLatestStatus
 arbitrary^11.4.2up to date
 libfuzzer-sys^0.40.4.10up to date
 tracing-subscriber ⚠️^0.30.3.22maybe insecure

Security Vulnerabilities

smallvec: Buffer overflow in SmallVec::insert_many

RUSTSEC-2021-0003

A bug in the SmallVec::insert_many method caused it to allocate a buffer that was smaller than needed. It then wrote past the end of the buffer, causing a buffer overflow and memory corruption on the heap.

This bug was only triggered if the iterator passed to insert_many yielded more items than the lower bound returned from its size_hint method.

The flaw was corrected in smallvec 0.6.14 and 1.6.1, by ensuring that additional space is always reserved for each item inserted. The fix also simplified the implementation of insert_many to use less unsafe code, so it is easier to verify its correctness.

Thank you to Yechan Bae (@Qwaz) and the Rust group at Georgia Tech’s SSLab for finding and reporting this bug.

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.