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 rocket_sync_db_pools

Dependencies

(12 total, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 diesel^2.0.02.1.6up to date
 memcache^0.150.17.2out of date
 postgres^0.190.19.7up to date
 r2d2^0.80.8.10up to date
 r2d2-memcache^0.60.6.0up to date
 r2d2_postgres^0.180.18.1up to date
 r2d2_sqlite^0.22.00.24.0out of date
 rocket^0.5.00.5.0up to date
 rocket_sync_db_pools_codegen^0.1.00.1.0up to date
 rusqlite^0.29.00.31.0out of date
 serde^1.01.0.200up to date
 tokio ⚠️^1.6.11.37.0maybe 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);