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 uucore

Dependencies

(53 total, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 base64-simd^0.80.8.0up to date
 bigdecimal^0.40.4.10up to date
 blake2b_simd^1.0.21.0.4up to date
 blake3^1.5.11.8.3up to date
 bstr^1.9.11.12.1up to date
 clap^4.54.6.0up to date
 crc-fast^1.5.01.10.0up to date
 data-encoding^2.62.10.0up to date
 data-encoding-macro^0.1.150.1.19up to date
 digest^0.10.70.11.2out of date
 codspeed-divan-compat^4.0.54.4.1up to date
 dns-lookup^3.0.03.0.1up to date
 dunce^1.0.41.0.5up to date
 fluent^0.17.00.17.0up to date
 fluent-bundle^0.16.00.16.0up to date
 fluent-syntax^0.12.00.12.0up to date
 glob^0.3.10.3.3up to date
 hex^0.4.30.4.3up to date
 icu_calendar^2.0.02.1.1up to date
 icu_collator^2.0.02.1.1up to date
 icu_datetime^2.0.02.1.1up to date
 icu_decimal^2.0.02.1.1up to date
 icu_locale^2.0.02.1.1up to date
 icu_provider^2.0.02.1.1up to date
 itertools^0.14.00.14.0up to date
 jiff^0.2.180.2.23up to date
 jiff-icu^0.2.20.2.2up to date
 libc^0.2.1720.2.183up to date
 md-5^0.10.60.10.6up to date
 memchr^2.7.22.8.0up to date
 nix^0.300.31.2out of date
 num-traits^0.2.190.2.19up to date
 os_display^0.1.30.1.4up to date
 procfs^0.180.18.0up to date
 rustc-hash^2.1.12.1.1up to date
 selinux=0.6.00.6.0up to date
 sha1^0.10.60.10.6up to date
 sha2^0.10.80.11.0out of date
 sha3^0.10.80.10.8up to date
 sm3^0.4.20.4.2up to date
 tempfile^3.15.03.27.0up to date
 thiserror^2.0.32.0.18up to date
 time ⚠️^0.3.360.3.47maybe insecure
 unic-langid^0.9.60.9.6up to date
 unit-prefix^0.50.5.2up to date
 utmp-classic^0.1.60.1.6up to date
 uucore_procs^0.7.00.7.0up to date
 walkdir^2.52.5.0up to date
 wild^2.2.12.2.1up to date
 winapi-util^0.1.80.1.11up to date
 windows-sys^0.61.00.61.2up to date
 xattr^1.3.11.6.1up to date
 z85^3.0.53.0.7up to date

Dev dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 tempfile^3.15.03.27.0up to date

Security Vulnerabilities

time: Denial of Service via Stack Exhaustion

RUSTSEC-2026-0009

Impact

When user-provided input is provided to any type that parses with the RFC 2822 format, a denial of service attack via stack exhaustion is possible. The attack relies on formally deprecated and rarely-used features that are part of the RFC 2822 format used in a malicious manner. Ordinary, non-malicious input will never encounter this scenario.

Patches

A limit to the depth of recursion was added in v0.3.47. From this version, an error will be returned rather than exhausting the stack.

Workarounds

Limiting the length of user input is the simplest way to avoid stack exhaustion, as the amount of the stack consumed would be at most a factor of the length of the input.