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 leguichet

Dependencies

(15 total, 8 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 clap^3.1.184.6.0out of date
 log^0.4.170.4.29up to date
 file^1.1.20.1.1out of date
 data-encoding^2.3.22.10.0up to date
 sha2^0.10.20.11.0out of date
 regex^1.5.61.12.3up to date
 walkdir^2.3.22.5.0up to date
 flexi_logger^0.22.50.31.8out of date
 syscallz^0.16.10.17.0out of date
 nix^0.24.10.31.2out of date
 infer^0.8.00.19.0out of date
 yara^0.9.10.31.0out of date
 anyhow^1.0.571.0.102up to date
 time ⚠️^0.3.90.3.47maybe insecure
 crossbeam-utils^0.8.80.8.21up to date

Dev dependencies

(3 total, 1 outdated)

CrateRequiredLatestStatus
 libc^0.2.1240.2.183up to date
 tempfile^3.3.03.27.0up to date
 zip^0.6.28.4.0out of 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.