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

(56 total, 2 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.6up to date
 bstr^1.9.11.13.1up to date
 clap^4.54.6.6up to date
 crc-fast^1.5.01.10.0up to date
 data-encoding^2.62.11.1up to date
 data-encoding-macro^0.1.150.1.21up to date
 digest^0.11.00.11.3up to date
 codspeed-divan-compat^5.0.05.0.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-syntax^0.12.00.12.0up to date
 glob^0.3.10.3.4up to date
 hex^0.4.30.4.3up to date
 icu_calendar^2.0.02.3.0up to date
 icu_collator^2.0.02.3.0up to date
 icu_datetime^2.0.02.3.0up to date
 icu_decimal^2.0.02.3.0up to date
 icu_locale^2.0.02.3.0up to date
 icu_provider^2.0.02.3.0up to date
 itertools^0.15.00.15.0up to date
 jiff^0.2.180.2.35up to date
 jiff-icu^0.2.20.2.2up to date
 libc^0.2.1860.2.189up to date
 md-5^0.11.00.11.0up to date
 memchr^2.7.22.8.3up to date
 nix^0.31.30.31.3up to date
 num-traits^0.2.190.2.19up to date
 openssl ⚠️^0.100.10.81maybe insecure
 os_display^0.1.30.1.4up to date
 procfs^0.180.18.0up to date
 rustc-hash^2.1.12.1.3up to date
 rustix^1.1.41.1.4up to date
 selinux^0.60.6.3up to date
 sha1^0.11.00.11.0up to date
 sha2^0.11.00.11.0up to date
 sha3^0.12.00.12.0up to date
 shake^0.1.00.1.0up to date
 sm3^0.5.00.5.0up to date
 tempfile^3.15.03.27.0up to date
 thiserror^2.0.32.0.20up to date
 time ⚠️^0.3.360.3.55maybe insecure
 unic-langid^0.9.60.9.6up to date
 unicode-width^0.2.00.2.2up to date
 unit-prefix^0.50.5.2up to date
 utmp-classic^0.1.60.1.6up to date
 uucore_procs^0.10.00.10.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

openssl: Use-After-Free in `Md::fetch` and `Cipher::fetch`

RUSTSEC-2025-0022

When a Some(...) value was passed to the properties argument of either of these functions, a use-after-free would result.

In practice this would nearly always result in OpenSSL treating the properties as an empty string (due to CString::drop's behavior).

The maintainers thank quitbug for reporting this vulnerability to us.

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.