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 haret

Dependencies

(16 total, 9 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 libc^0.10.2.186out of date
 time ⚠️*0.3.47maybe insecure
 uuid^0.51.23.1out of date
 rand^0.30.10.1out of date
 slog^12.8.2out of date
 amy^0.7.20.10.0out of date
 funfsm^0.20.2.1up to date
 orset^0.20.2.0up to date
 rabble^0.40.4.1up to date
 protobuf ⚠️^1.0.243.7.2out of date
 vertree^0.20.2.2up to date
 lazy_static^0.11.5.0out of date
 serde^1.01.0.228up to date
 serde_derive^1.01.0.228up to date
 rmp-serde^0.131.3.1out of date
 toml^0.41.1.2+spec-1.1.0out of date

Dev dependencies

(5 total, 4 outdated)

CrateRequiredLatestStatus
 assert_matches^1.01.5.0up to date
 quickcheck^0.41.1.0out of date
 slog-envlogger^0.52.2.0out of date
 slog-stdlog^14.1.1out of date
 slog-term^1.12.9.2out of date

Crate haret-admin

Dependencies

(4 total, 2 outdated)

CrateRequiredLatestStatus
 rabble^0.40.4.1up to date
 rmp-serde^0.131.3.1out of date
 serde^1.01.0.228up to date
 uuid^0.51.23.1out of date

Crate haret-cli-client

Dependencies

(2 total, 2 outdated)

CrateRequiredLatestStatus
 uuid^0.51.23.1out of date
 lazy_static^0.11.5.0out of date

Crate haret-client

Dependencies

(1 total, 1 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 protobuf ⚠️^1.0.243.7.2out of date

Crate haret-devconfig

No external dependencies! 🙌

Crate haret-server

Dependencies

(5 total, 4 outdated)

CrateRequiredLatestStatus
 rabble^0.40.4.1up to date
 slog^12.8.2out of date
 slog-envlogger^0.52.2.0out of date
 slog-stdlog^14.1.1out of date
 slog-term^1.12.9.2out of date

Security Vulnerabilities

protobuf: Crash due to uncontrolled recursion in protobuf crate

RUSTSEC-2024-0437

Affected version of this crate did not properly parse unknown fields when parsing a user-supplied input.

This allows an attacker to cause a stack overflow when parsing the mssage on untrusted data.

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.