Files
advisory-db/crates/eventio/RUSTSEC-2020-0108.md
Yechan Bae b724f12a5b Update CVE numbers (#777)
* Update CVE numbers

* Fix RUSTSEC-2020-0093

* Add another alias for async-h1 crate
2021-02-25 20:00:25 -05:00

658 B

[advisory]
id = "RUSTSEC-2020-0108"
package = "eventio"
aliases = ["CVE-2020-36216"]
date = "2020-12-20"
url = "https://github.com/petabi/eventio/issues/33"
categories = ["memory-corruption", "thread-safety"]

[versions]
patched = [">= 0.5.1"]

Soundness issue: Input can be misused to create data race to an object

Input<R> implements Send without requiring R: Send.

Affected versions of this crate allows users to send non-Send types to other threads, which can lead to undefined behavior such as data race and memory corruption.

The flaw was corrected in version 0.5.1 by adding R: Send bound to the Send impl of Input<R>.