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 clickhouse

Dependencies

(26 total, 1 outdated, 3 possibly insecure)

CrateRequiredLatestStatus
 bstr^1.11.01.12.0up to date
 bytes^1.5.01.10.1up to date
 chrono ⚠️^0.40.4.41maybe insecure
 cityhash-rs=1.0.11.0.1up to date
 clickhouse-derive^0.2.00.2.0up to date
 futures^0.3.50.3.31up to date
 futures-channel^0.3.300.3.31up to date
 http-body-util^0.1.20.1.3up to date
 hyper^1.41.6.0up to date
 hyper-rustls^0.27.30.27.5up to date
 hyper-tls^0.6.00.6.0up to date
 hyper-util^0.1.60.1.11up to date
 lz4_flex^0.11.30.11.3up to date
 quanta^0.120.12.5up to date
 replace_with^0.1.70.1.7up to date
 rustls ⚠️^0.230.23.27maybe insecure
 sealed^0.60.6.0up to date
 serde^1.0.1061.0.219up to date
 serde_json^1.0.681.0.140up to date
 sha-1^0.100.10.1up to date
 static_assertions^1.11.1.0up to date
 thiserror^1.0.162.0.12out of date
 time^0.30.3.41up to date
 tokio ⚠️^1.0.11.45.0maybe insecure
 url^2.1.12.5.4up to date
 uuid^11.16.0up to date

Dev dependencies

(11 total, 1 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 criterion^0.5.00.5.1up to date
 fixnum^0.9.20.9.3up to date
 hyper^1.11.6.0up to date
 rand^0.8.50.9.1out of date
 serde^1.0.1061.0.219up to date
 serde_bytes^0.11.40.11.17up to date
 serde_json^11.0.140up to date
 serde_repr^0.1.70.1.20up to date
 time^0.3.170.3.41up to date
 tokio ⚠️^1.0.11.45.0maybe insecure
 uuid^11.16.0up to date

Security Vulnerabilities

chrono: Potential segfault in `localtime_r` invocations

RUSTSEC-2020-0159

Impact

Unix-like operating systems may segfault due to dereferencing a dangling pointer in specific circumstances. This requires an environment variable to be set in a different thread than the affected functions. This may occur without the user's knowledge, notably in a third-party library.

Workarounds

No workarounds are known.

References

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);

rustls: rustls network-reachable panic in `Acceptor::accept`

RUSTSEC-2024-0399

A bug introduced in rustls 0.23.13 leads to a panic if the received TLS ClientHello is fragmented. Only servers that use rustls::server::Acceptor::accept() are affected.

Servers that use tokio-rustls's LazyConfigAcceptor API are affected.

Servers that use tokio-rustls's TlsAcceptor API are not affected.

Servers that use rustls-ffi's rustls_acceptor_accept API are affected.