Add disappeared advisories (#1049)

This commit is contained in:
Yechan Bae
2021-09-18 17:33:39 -04:00
committed by GitHub
parent 9fead37879
commit bb15a55b43
2 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
```toml
[advisory]
id = "RUSTSEC-0000-0000"
package = "tectonic_xdv"
date = "2021-02-17"
url = "https://github.com/tectonic-typesetting/tectonic/issues/752"
categories = ["memory-exposure"]
informational = "unsound"
[versions]
patched = [">= 0.1.12"]
```
# `Read` on uninitialized buffer may cause UB ('tectonic_xdv' crate)
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 problem was fixed in commit `cdff034` by zero-initializing the buffer before passing it to a user-provided `Read` implementation.