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 actix-web-lab

Dependencies

(30 total, 5 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 actix-files^0.60.6.5up to date
 actix-http^33.6.0up to date
 actix-router^0.50.5.2up to date
 actix-service^22.0.2up to date
 actix-utils^33.0.1up to date
 actix-web^44.5.1up to date
 actix-web-lab-derive=0.16.00.20.0out of date
 ahash^0.70.8.11out of date
 arc-swap^1.11.7.1up to date
 async-trait^0.10.1.79up to date
 bytes^11.6.0up to date
 csv^1.11.3.0up to date
 derive_more^0.99.50.99.17up to date
 digest^0.100.10.7up to date
 futures-core^0.3.70.3.30up to date
 futures-util^0.3.70.3.30up to date
 generic-array^0.141.0.0out of date
 hmac^0.120.12.1up to date
 http^0.2.71.1.0out of date
 local-channel^0.10.1.5up to date
 mime^0.30.3.17up to date
 once_cell^1.81.19.0up to date
 pin-project-lite^0.2.70.2.13up to date
 regex^1.5.51.10.4up to date
 serde^11.0.197up to date
 serde_html_form^0.10.2.6out of date
 serde_json^11.0.115up to date
 subtle^2.42.5.0up to date
 tokio ⚠️^1.13.11.37.0maybe insecure
 tracing^0.1.300.1.40up 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);