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 bastion-executor

Dependencies

(17 total, 3 possibly insecure)

CrateRequiredLatestStatus
 arrayvec^0.7.00.7.8up to date
 bastion-utils^0.3.20.3.2up to date
 crossbeam-channel^0.50.5.16up to date
 crossbeam-epoch ⚠️^0.90.9.20maybe insecure
 crossbeam-queue^0.3.00.3.13up to date
 crossbeam-utils^0.80.8.22up to date
 futures-timer^3.0.23.0.4up to date
 lazy_static^1.41.5.0up to date
 lever ⚠️^0.10.1.4maybe insecure
 libc^0.20.2.189up to date
 lightproc^0.30.3.5up to date
 num_cpus^1.131.17.0up to date
 once_cell^1.4.01.21.4up to date
 pin-utils^0.1.00.1.0up to date
 tokio ⚠️^1.11.53.1maybe insecure
 tracing^0.1.190.1.44up to date
 winapi^0.3.80.3.9up to date

Dev dependencies

(5 total, 2 possibly insecure)

CrateRequiredLatestStatus
 futures^0.3.50.3.33up to date
 proptest^1.01.11.0up to date
 tokio ⚠️^1.11.53.1maybe insecure
 tokio-test^0.4.00.4.5up to date
 tracing-subscriber ⚠️^0.30.3.23maybe insecure

Security Vulnerabilities

lever: AtomicBox<T> lacks bound on its Send and Sync traits allowing data races

RUSTSEC-2020-0137

AtomicBox<T> is a Box type designed to be used across threads, however, it implements the Send and Sync traits for all types T.

This allows non-Send types such as Rc and non-Sync types such as Cell to be used across thread boundaries which can trigger undefined behavior and memory corruption.

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);

tracing-subscriber: Logging user input may result in poisoning logs with ANSI escape sequences

RUSTSEC-2025-0055

Previous versions of tracing-subscriber were vulnerable to ANSI escape sequence injection attacks. Untrusted user input containing ANSI escape sequences could be injected into terminal output when logged, potentially allowing attackers to:

  • Manipulate terminal title bars
  • Clear screens or modify terminal display
  • Potentially mislead users through terminal manipulation

In isolation, impact is minimal, however security issues have been found in terminal emulators that enabled an attacker to use ANSI escape sequences via logs to exploit vulnerabilities in the terminal emulator.

This was patched in PR #3368 to escape ANSI control characters from user input.

crossbeam-epoch: Invalid pointer dereference in `fmt::Pointer` impl for `Atomic` and `Shared` when the underlying pointer is invalid

RUSTSEC-2026-0204

Affected versions of fmt::Display dereference the underlying pointer. This causes a invalid pointer dereference e.g., when a pointer created with Atomic::null or Shared::null. fmt::Debug impls and pre-0.9 fmt::Display impls, which do not dereference pointers, are not affected by this issue.