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 zbus

Dependencies

(37 total, 15 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 async-broadcast^0.5.00.7.2out of date
 async-executor^1.5.01.13.3up to date
 async-fs^1.6.02.2.0out of date
 async-io^1.12.02.6.0out of date
 async-lock^2.6.03.4.1out of date
 async-process^1.7.02.5.0out of date
 async-recursion^1.0.01.1.1up to date
 async-task^4.3.04.7.1up to date
 async-trait^0.1.580.1.89up to date
 byteorder^1.4.31.5.0up to date
 derivative^2.22.2.0up to date
 enumflags2^0.7.50.7.12up to date
 event-listener^2.5.35.4.1out of date
 futures-core^0.3.250.3.31up to date
 futures-sink^0.3.250.3.31up to date
 futures-util^0.3.250.3.31up to date
 hex^0.4.30.4.3up to date
 nix^0.26.00.30.1out of date
 once_cell^1.4.01.21.3up to date
 ordered-stream^0.20.2.0up to date
 quick-xml^0.27.10.38.4out of date
 rand^0.8.50.9.2out of date
 serde^1.01.0.228up to date
 serde-xml-rs^0.4.10.8.2out of date
 serde_repr^0.1.90.1.20up to date
 sha1^0.10.50.10.6up to date
 static_assertions^1.1.01.1.0up to date
 tokio ⚠️^1.21.21.48.0maybe insecure
 tokio-vsock^0.3.30.7.2out of date
 tracing^0.1.370.1.43up to date
 uds_windows^1.0.21.1.0up to date
 vsock^0.3.00.5.2out of date
 winapi^0.30.3.9up to date
 xdg-home^1.0.01.3.0up to date
 zbus_macros=3.13.15.12.0out of date
 zbus_names^2.54.2.0out of date
 zvariant^3.10.05.8.0out of date

Dev dependencies

(8 total, 2 possibly insecure)

CrateRequiredLatestStatus
 async-std^1.12.01.13.2up to date
 doc-comment^0.3.30.3.4up to date
 futures-util^0.3.250.3.31up to date
 ntest^0.9.00.9.4up to date
 tempfile^3.3.03.23.0up to date
 test-log^0.2.110.2.19up to date
 tokio ⚠️^11.48.0maybe insecure
 tracing-subscriber ⚠️^0.3.160.3.22maybe insecure

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

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.