Report 0112-ms3d to RustSec

This commit is contained in:
JOE1994
2021-01-30 19:40:14 -05:00
parent 18000b07d4
commit 91edd1b4e5

View File

@@ -0,0 +1,20 @@
```toml
[advisory]
id = "RUSTSEC-0000-0000"
package = "ms3d"
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`.