This project contains known security vulnerabilities. Find detailed information at the bottom.

Crate redis

Dependencies

(12 total, 5 outdated, 1 insecure)

CrateRequiredLatestStatus
 bytes^0.41.6.0out of date
 combine^3.2.04.6.6out of date
 futures^0.10.3.30out of date
 rustc-serialize ⚠️^0.3.160.3.25insecure
 sha1>=0.2, <0.70.10.6out of date
 tokio-codec^0.10.1.2up to date
 tokio-executor^0.10.1.10up to date
 tokio-io^0.10.1.13up to date
 tokio-tcp^0.10.1.4up to date
 tokio-uds^0.20.2.7up to date
 unix_socket^0.5.00.5.0up to date
 url^1.22.5.0out of date

Dev dependencies

(6 total, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 bencher^0.10.1.5up to date
 net2^0.20.2.39up to date
 partial-io^0.30.5.4out of date
 quickcheck^0.61.0.3out of date
 rand^0.40.8.5out of date
 tokio ⚠️^0.11.37.0out of date

Security Vulnerabilities

tokio: Data race when sending and receiving after closing a `oneshot` channel

RUSTSEC-2021-0124

If a tokio::sync::oneshot channel is closed (via the oneshot::Receiver::close method), a data race may occur if the oneshot::Sender::send method is called while the corresponding oneshot::Receiver is awaited or calling try_recv.

When these methods are called concurrently on a closed channel, the two halves of the channel can concurrently access a shared memory location, resulting in a data race. This has been observed to cause memory corruption.

Note that the race only occurs when both halves of the channel are used after the Receiver half has called close. Code where close is not used, or where the Receiver is not awaited and try_recv is not called after calling close, is not affected.

See tokio#4225 for more details.

rustc-serialize: Stack overflow in rustc_serialize when parsing deeply nested JSON

RUSTSEC-2022-0004

When parsing JSON using json::Json::from_str, there is no limit to the depth of the stack, therefore deeply nested objects can cause a stack overflow, which aborts the process.

Example code that triggers the vulnerability is

fn main() {
    let _ = rustc_serialize::json::Json::from_str(&"[0,[".repeat(10000));
}

serde is recommended as a replacement to rustc_serialize.