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 flight_tracking_erau_se300

Dependencies

(27 total, 11 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 conrod_core^0.760.76.1up to date
 conrod_winit^0.760.76.1up to date
 conrod_glium^0.760.76.1up to date
 glium^0.280.34.0out of date
 winit^0.230.29.15out of date
 glam^0.200.27.0out of date
 itertools^0.100.12.1out of date
 num^0.40.4.1up to date
 lazy_static^1.01.4.0up to date
 find_folder^0.30.3.0up to date
 rand^0.80.8.5up to date
 cgmath^0.18.00.18.0up to date
 async-trait^0.10.1.79up to date
 thiserror^1.01.0.58up to date
 image^0.230.25.0out of date
 rain_viewer^0.30.3.1up to date
 maptiler-cloud^0.30.3.0up to date
 opensky_api^0.1.40.1.4up to date
 tokio ⚠️^1.121.37.0maybe insecure
 serde^1.01.0.197up to date
 bincode^1.3.31.3.3up to date
 parking_lot^0.110.12.1out of date
 simple_moving_average^0.11.0.2out of date
 intmap^0.72.0.0out of date
 enum-map^1.12.7.3out of date
 atomic_enum^0.10.3.0out of date
 statrs^0.150.16.0out of 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);