mirror of
https://github.com/OMGeeky/advisory-db.git
synced 2025-12-28 15:28:09 +01:00
As proposed in #240 and tracked in #414, this PR translates all advisories into the new "V3" advisory format, which is based on Markdown with leading TOML front matter. This format makes it easier to see rendered Markdown syntax descriptions, whether rendered by an IDE or GitHub. This should help with both crafting advisories initially as well as review, and ideally encourages more lengthy descriptions. Support for this format shipped in `cargo-audit` v0.12.0 on May 6th, 2020.
567 B
567 B
[advisory]
id = "CVE-2018-1000657"
package = "std"
categories = ["code-execution", "denial-of-service"]
date = "2018-08-20"
url = "https://github.com/rust-lang/rust/issues/44800"
[affected.functions]
"std::collections::vec_deque::VecDeque::reserve" = ["< 1.22.0, >= 1.3.0"]
[versions]
patched = [">= 1.22.0"]
unaffected = ["< 1.3.0"]
Buffer overflow vulnerability in VecDeque::reserve()
The std::collections::vec_deque::VecDeque::reserve() function contains a
buffer overflow vulnerability that can potentially result in arbitrary code
execution.