Files
advisory-db/crates/smallvec/RUSTSEC-2019-0012.toml
Tony Arcieri 01ac6725d5 Fix all advisories to pass linter
Mostly related to the `affected_functions` field, which has changed a
few times.
2019-09-09 12:19:01 -07:00

20 lines
745 B
TOML

[advisory]
id = "RUSTSEC-2019-0012"
package = "smallvec"
date = "2019-07-19"
title = "Memory corruption in SmallVec::grow()"
description = """
Attempting to call `grow` on a spilled SmallVec with a value less than the current capacity causes corruption of memory allocator data structures.
An attacker that controls the value passed to `grow` may exploit this flaw to obtain memory contents or gain remote code execution.
Credits to @ehuss for discovering, reporting and fixing the bug.
"""
patched_versions = [">= 0.6.10"]
unaffected_versions = ["< 0.6.3"]
url = "https://github.com/servo/rust-smallvec/issues/149"
categories = ["code-execution", "memory-corruption"]
[affected.functions]
"smallvec::SmallVec::grow" = ["< 0.6.10, >= 0.6.3"]