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 cryptr

Dependencies

(25 total, 2 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 argon2^0.5.20.5.3up to date
 async-stream^0.3.50.3.6up to date
 async-trait^0.1.740.1.91up to date
 base64^0.22.00.22.1up to date
 bincode^23.0.0out of date
 bytes^1.11.11.12.1up to date
 chacha20poly1305^0.10.10.11.0out of date
 clap^4.4.104.6.4up to date
 colored^33.1.1up to date
 dotenvy^0.15.70.15.7up to date
 flume^0.120.12.0up to date
 futures^0.3.290.3.33up to date
 home^0.5.50.5.12up to date
 lazy_static^1.1.01.5.0up to date
 quinn-proto ⚠️^0.11.140.11.16maybe insecure
 rand^0.100.10.2up to date
 regex^1.10.21.13.1up to date
 reqwest^0.13.20.13.4up to date
 rpassword^7.3.17.5.4up to date
 s3-simple^0.8.00.8.0up to date
 thiserror^22.0.19up to date
 tokio^1.35.01.53.1up to date
 tokio-util^0.7.100.7.19up to date
 tracing^0.1.400.1.44up to date
 tracing-subscriber ⚠️^0.3.180.3.23maybe insecure

Dev dependencies

(2 total, all up-to-date)

CrateRequiredLatestStatus
 rstest^0.260.26.1up to date
 tokio-test^0.4.30.4.5up to date

Security Vulnerabilities

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.

quinn-proto: Remote memory exhaustion in quinn-proto from unbounded out-of-order stream reassembly

RUSTSEC-2026-0185

The Assembler component that assembles unordered stream fragments into consecutive chunks of the stream incurs some overhead for non-contiguous fragments. Readers that read from a RecvStream in order (through an AsyncRead impl for example) will be sensitive to peers that send fragments while leaving out early parts of the stream, and in particular, fragments with many gaps (because these cannot be defragmented). In such a scenario, the receiving connection suffers from high buffer overhead, enabling memory exhaustion.