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 spot

Dependencies

(26 total, 9 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 gtk4^0.6.60.8.1out of date
 libadwaita^0.4.10.6.0out of date
 gdk4^0.6.30.8.1out of date
 gio^0.17.90.19.4out of date
 glib^0.17.90.19.4out of date
 librespot^0.4.20.4.2up to date
 tokio ⚠️^11.37.0maybe insecure
 futures^0.3.180.3.30up to date
 serde^1.0.1361.0.198up to date
 serde_json^1.0.961.0.116up to date
 isahc^1.7.21.7.2up to date
 rand^0.8.50.8.5up to date
 gettext-rs^0.7.00.7.0up to date
 secret-service^3.0.13.0.1up to date
 gdk-pixbuf^0.17.00.19.2out of date
 ref_filter_map^1.0.11.0.1up to date
 regex^1.8.31.10.4up to date
 async-std^1.12.01.12.0up to date
 form_urlencoded^1.0.11.2.1up to date
 zbus^3.134.1.2out of date
 zvariant^3.144.0.2out of date
 thiserror^1.0.401.0.59up to date
 lazy_static^1.4.01.4.0up to date
 log^0.4.170.4.21up to date
 env_logger^0.10.00.11.3out of date
 percent-encoding^2.2.02.3.1up 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);