Files
advisory-db/crates/ms3d/RUSTSEC-2021-0016.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

819 B

[advisory]
id = "RUSTSEC-2021-0016"
package = "ms3d"
aliases = ["CVE-2021-26952"]
date = "2021-01-26"
url = "https://github.com/andrewhickman/ms3d/issues/1"
categories = ["memory-exposure"]

[versions]
patched = [">= 0.1.3"]

IoReader::read(): user-provided Read on uninitialized buffer may cause UB

Affected versions of this crate passes an uninitialized buffer to a user-provided Read implementation.

Arbitrary Read implementations can read from the uninitialized buffer (memory exposure) and also can return incorrect number of bytes written to the buffer. Reading from uninitialized memory produces undefined values that can quickly invoke undefined behavior.

The flaw was fixed in commit 599313b by zero-initializing the buffer (via self.buf.resize(len, 0)) before passing it to Read.