Skip to content

Commit

Permalink
Merge pull request #864 from ammaraskar/outer_cgi
Browse files Browse the repository at this point in the history
[patched] Add advisory for uninitialized exposure in outer_cgi
  • Loading branch information
Shnatsel authored Apr 2, 2021
2 parents 333e5cb + 1f8dfd9 commit a2e3067
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions crates/outer_cgi/RUSTSEC-0000-0000.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
```toml
[advisory]
id = "RUSTSEC-0000-0000"
package = "outer_cgi"
date = "2021-01-31"
url = "https://github.com/SolraBizna/outer_cgi/issues/1"
categories = ["memory-exposure"]

[versions]
patched = [">= 0.2.1"]
```

# KeyValueReader passes uninitialized memory to Read instance

The `KeyValueReader` type in affected versions of this crate set up an
uninitialized memory buffer and passed them to be read in to a user-provided
`Read` instance.

The `Read` instance could read uninitialized memory and cause undefined
behavior and miscompilations.

This issue was fixed in commit [dd59b30](https://github.com/SolraBizna/outer_cgi/commit/dd59b3066e616a08e756f72de8dc3ab11b7036c4)
by zero-initializing the buffers before passing them.

0 comments on commit a2e3067

Please sign in to comment.