mirror of
https://github.com/OMGeeky/advisory-db.git
synced 2026-02-23 15:38:27 +01:00
As announced in #228, this commit migrates all advisories to the new V2 format, which splits version information into a separate section, and now has a structure which corresponds to the internal code structure of the `rustsec` crate. This is a breaking change for users of `cargo-audit` < 0.9, and anyone who has written a 3rd party advisory format parser.
16 lines
659 B
TOML
16 lines
659 B
TOML
[advisory]
|
|
id = "RUSTSEC-2019-0011"
|
|
package = "memoffset"
|
|
date = "2019-07-16"
|
|
title = "Flaw in offset_of and span_of causes SIGILL, drops uninitialized memory of arbitrary type on panic in client code"
|
|
url = "https://github.com/Gilnaa/memoffset/issues/9#issuecomment-505461490"
|
|
description = """
|
|
Affected versions of this crate caused traps and/or memory unsafety by zero-initializing references.
|
|
They also could lead to uninitialized memory being dropped if the field for which the offset is requested was behind a deref coercion, and that deref coercion caused a panic.
|
|
|
|
The flaw was corrected by using `MaybeUninit`.
|
|
"""
|
|
|
|
[versions]
|
|
patched = [">= 0.5.0"]
|