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.
19 lines
633 B
TOML
19 lines
633 B
TOML
[advisory]
|
|
id = "RUSTSEC-2019-0025"
|
|
package = "serde_cbor"
|
|
date = "2019-10-03"
|
|
title = "Flaw in CBOR deserializer allows stack overflow"
|
|
url = "https://github.com/pyfisch/cbor/releases/tag/v0.10.2"
|
|
categories = ["crypto-failure"]
|
|
keywords = ["stack-overflow", "crash", "denial-of-service"]
|
|
description = """
|
|
Affected versions of this crate did not properly check if semantic tags were nested excessively during deserialization.
|
|
|
|
This allows an attacker to craft small (< 1 kB) CBOR documents that cause a stack overflow.
|
|
|
|
The flaw was corrected by limiting the allowed number of nested tags.
|
|
"""
|
|
|
|
[versions]
|
|
patched = [">= 0.10.2"]
|