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 kube-runtime

Dependencies

(20 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 ahash^0.80.8.11up to date
 async-broadcast^0.7.00.7.1up to date
 async-stream^0.3.50.3.6up to date
 async-trait^0.1.640.1.83up to date
 backoff^0.4.00.4.0up to date
 derivative^2.1.12.2.0up to date
 futures^0.3.170.3.30up to date
 hashbrown^0.14.00.15.0out of date
 json-patch^2.0.02.0.0up to date
 jsonptr^0.4.70.6.3out of date
 k8s-openapi^0.23.00.23.0up to date
 kube-client=0.95.00.95.0up to date
 parking_lot^0.12.00.12.3up to date
 pin-project^1.0.41.1.5up to date
 serde^1.0.1301.0.210up to date
 serde_json^1.0.681.0.128up to date
 thiserror^1.0.291.0.64up to date
 tokio ⚠️^1.14.01.40.0maybe insecure
 tokio-util^0.7.00.7.12up to date
 tracing^0.1.360.1.40up to date

Dev dependencies

(7 total, 1 possibly insecure)

CrateRequiredLatestStatus
 k8s-openapi^0.23.00.23.0up to date
 kube<1.0.0, >=0.60.00.95.0up to date
 rand^0.8.30.8.5up to date
 schemars^0.8.60.8.21up to date
 serde_json^1.0.681.0.128up to date
 tokio ⚠️^1.14.01.40.0maybe insecure
 tracing-subscriber^0.3.170.3.18up 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);