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 arti-client

Dependencies

(50 total, 31 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.0.231.0.102up to date
 async-trait^0.1.540.1.89up to date
 cfg-if^1.0.01.0.4up to date
 derive-deftly~1.6.01.7.0out of date
 derive_builder_fork_arti^0.11.20.11.2up to date
 derive_more^2.0.12.1.1up to date
 dyn-clone^1.0.111.0.20up to date
 educe^0.4.220.6.0out of date
 fs-mistrust^0.13.10.14.0out of date
 futures^0.3.140.3.32up to date
 hostname-validator^1.1.11.1.1up to date
 humantime^22.3.0up to date
 humantime-serde^1.1.11.1.1up to date
 libc^0.20.2.183up to date
 once_cell^1.91.21.4up to date
 postage^0.5.00.5.0up to date
 rand^0.9.10.10.0out of date
 safelog^0.7.00.8.0out of date
 serde^1.0.1031.0.228up to date
 thiserror^22.0.18up to date
 time ⚠️^0.3.200.3.47maybe insecure
 tor-async-utils^0.39.00.40.0out of date
 tor-basic-utils^0.39.00.40.0out of date
 tor-chanmgr^0.39.00.40.0out of date
 tor-circmgr^0.39.00.40.0out of date
 tor-config^0.39.00.40.0out of date
 tor-config-path^0.39.00.40.0out of date
 tor-dircommon^0.39.00.40.0out of date
 tor-dirmgr^0.39.00.40.0out of date
 tor-error^0.39.00.40.0out of date
 tor-geoip^0.39.00.40.0out of date
 tor-guardmgr^0.39.00.40.0out of date
 tor-hsclient^0.39.00.40.0out of date
 tor-hscrypto^0.39.00.40.0out of date
 tor-hsservice^0.39.00.40.0out of date
 tor-keymgr^0.39.00.40.0out of date
 tor-linkspec^0.39.00.40.0out of date
 tor-llcrypto^0.39.00.40.0out of date
 tor-memquota^0.39.00.40.0out of date
 tor-netdir^0.39.00.40.0out of date
 tor-netdoc^0.39.00.40.0out of date
 tor-persist^0.39.00.40.0out of date
 tor-proto^0.39.00.40.0out of date
 tor-protover^0.39.00.40.0out of date
 tor-ptmgr^0.39.00.40.0out of date
 tor-rpcbase^0.39.00.40.0out of date
 tor-rtcompat^0.39.00.40.0out of date
 tracing^0.1.360.1.44up to date
 visibility^0.1.00.1.1up to date
 void^11.0.2up to date

Dev dependencies

(11 total, 5 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.0.231.0.102up to date
 rand^0.9.10.10.0out of date
 serde_json^1.0.1041.0.149up to date
 strum^0.27.10.28.0out of date
 tempfile^3.33.27.0up to date
 tokio ⚠️^1.71.50.0maybe insecure
 toml^0.9.51.0.6+spec-1.1.0out of date
 tor-relay-selection^0.39.00.40.0out of date
 tor-rtcompat^0.39.00.40.0out of date
 tracing-subscriber^0.3.200.3.23up to date
 tracing-test^0.2.40.2.6up to date

Security Vulnerabilities

tokio: reject_remote_clients Configuration corruption

RUSTSEC-2023-0001

On Windows, configuring a named pipe server with pipe_mode will force ServerOptions::reject_remote_clients as false.

This drops any intended explicit configuration for the reject_remote_clients that may have been set as true previously.

The default setting of reject_remote_clients is normally true meaning the default is also overridden as false.

Workarounds

Ensure that pipe_mode is set first after initializing a ServerOptions. For example:

let mut opts = ServerOptions::new();
opts.pipe_mode(PipeMode::Message);
opts.reject_remote_clients(true);

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.