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 fantoch

Dependencies

(19 total, 5 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 ahash^0.7.60.8.12out of date
 bincode^1.3.33.0.0out of date
 bytes^1.1.01.11.0up to date
 color-eyre^0.6.10.6.5up to date
 dashmap^5.1.06.1.0out of date
 flate2^1.0.221.1.8up to date
 futures^0.3.210.3.31up to date
 hashbrown^0.12.00.16.1out of date
 parking_lot^0.12.00.12.5up to date
 num_cpus^1.13.11.17.0up to date
 rand^0.8.50.9.2out of date
 serde^1.0.1361.0.228up to date
 threshold^0.9.10.9.1up to date
 tokio ⚠️^1.17.01.49.0maybe insecure
 tokio-util^0.7.00.7.18up to date
 tracing^0.1.310.1.44up to date
 tracing-appender^0.2.10.2.4up to date
 tracing-subscriber ⚠️^0.3.90.3.22maybe insecure
 zipf^7.0.07.0.2up to date

Dev dependencies

(2 total, all up-to-date)

CrateRequiredLatestStatus
 quickcheck^1.0.31.0.3up to date
 quickcheck_macros^1.0.01.1.0up to date

Crate fantoch_ps

Dependencies

(14 total, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 ahash^0.7.60.8.12out of date
 clap^3.1.54.5.54out of date
 color-eyre^0.6.10.6.5up to date
 futures^0.3.210.3.31up to date
 rand^0.8.50.9.2out of date
 rayon^1.5.11.11.0up to date
 serde^1.0.1361.0.228up to date
 threshold^0.9.10.9.1up to date
 tokio ⚠️^1.17.01.49.0maybe insecure
 tracing^0.1.310.1.44up to date
 tracing-appender^0.2.10.2.4up to date
 parking_lot^0.12.00.12.5up to date
 num_cpus^1.13.11.17.0up to date
 jemallocator^0.3.20.5.4out of date

Dev dependencies

(3 total, all up-to-date)

CrateRequiredLatestStatus
 permutator^0.4.30.4.3up to date
 quickcheck^1.0.31.0.3up to date
 quickcheck_macros^1.0.01.1.0up to date

Crate fantoch_bote

Dependencies

(4 total, 1 outdated)

CrateRequiredLatestStatus
 bincode^1.3.33.0.0out of date
 permutator^0.4.30.4.3up to date
 rayon^1.5.11.11.0up to date
 serde^1.0.1361.0.228up to date

Crate fantoch_exp

Dependencies

(15 total, 5 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 bincode^1.3.33.0.0out of date
 color-eyre^0.6.10.6.5up to date
 indicatif^0.16.20.18.3out of date
 flate2^1.0.221.1.8up to date
 futures^0.3.210.3.31up to date
 rusoto_core^0.46.00.48.0out of date
 rusoto_credential^0.46.00.48.0out of date
 rusoto_ec2^0.46.00.48.0out of date
 serde^1.0.1361.0.228up to date
 serde_json^1.0.791.0.149up to date
 tracing^0.1.310.1.44up to date
 tracing-futures^0.2.50.2.5up to date
 tracing-subscriber ⚠️^0.3.90.3.22maybe insecure
 tokio ⚠️^1.17.01.49.0maybe insecure
 tsunami^0.11.10.11.1up to date

Crate fantoch_plot

Dependencies

(5 total, 1 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 pyo3 ⚠️^0.16.00.27.2out of date
 color-eyre^0.6.10.6.5up to date
 csv^1.1.61.4.0up to date
 rayon^1.5.11.11.0up to date
 serde^1.0.1361.0.228up 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);

pyo3: Risk of buffer overflow in `PyString::from_object`

RUSTSEC-2025-0020

PyString::from_object took &str arguments and forwarded them directly to the Python C API without checking for terminating nul bytes. This could lead the Python interpreter to read beyond the end of the &str data and potentially leak contents of the out-of-bounds read (by raising a Python exception containing a copy of the data including the overflow).

In PyO3 0.24.1 this function will now allocate a CString to guarantee a terminating nul bytes. PyO3 0.25 will likely offer an alternative API which takes &CStr arguments.

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.