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 async-compression

Dependencies

(12 total, 5 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 brotli^3.3.05.0.0out of date
 bytes^0.5.01.6.0out of date
 bzip2 ⚠️^0.4.10.4.4maybe insecure
 flate2^1.0.111.0.28up to date
 futures-core^0.3.00.3.30up to date
 futures-io^0.3.00.3.30up to date
 zstd^0.6.00.13.1out of date
 memchr^2.2.12.7.2up to date
 pin-project-lite^0.2.00.2.14up to date
 tokio ⚠️^0.3.01.37.0out of date
 xz2^0.1.60.1.7up to date
 zstd-safe^3.0.07.1.0out of date

Dev dependencies

(10 total, 7 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 bytes^0.5.01.6.0out of date
 futures^0.3.50.3.30up to date
 futures-test^0.3.50.3.30up to date
 ntest^0.3.30.9.2out of date
 proptest^0.9.41.4.0out of date
 proptest-derive^0.1.20.4.0out of date
 rand^0.7.20.8.5out of date
 timebomb^0.1.20.1.2up to date
 tokio ⚠️^0.3.01.37.0out of date
 tokio-util^0.6.00.7.10out of date

Security Vulnerabilities

tokio: Task dropped in wrong thread when aborting `LocalSet` task

RUSTSEC-2021-0072

When aborting a task with JoinHandle::abort, the future is dropped in the thread calling abort if the task is not currently being executed. This is incorrect for tasks spawned on a LocalSet.

This can easily result in race conditions as many projects use Rc or RefCell in their Tokio tasks for better performance.

See tokio#3929 for more details.

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.

bzip2: bzip2 Denial of Service (DoS)

RUSTSEC-2023-0004

Working with specific payloads can cause a Denial of Service (DoS) vector.

Both Decompress and Compress implementations can enter into infinite loops given specific payloads entered that trigger it.

The issue is described in great detail in the bzip2 repository issue.

Thanks to bjrjk for finding and providing the patch for the issue and the maintainer responsibly responding to release a fix quickly.

Users who use the crate with untrusted data should update the bzip2 to 0.4.4.