mirror of
https://github.com/OMGeeky/advisory-db.git
synced 2026-02-15 22:04:38 +01:00
Documents the new `keywords` attribute and adds keywords to all current advisories. These can be consumed by the web UI.
18 lines
615 B
TOML
18 lines
615 B
TOML
[advisory]
|
|
id = "RUSTSEC-2017-0001"
|
|
package = "sodiumoxide"
|
|
patched_versions = [">= 0.0.14"]
|
|
aliases = ["CVE-2017-1000168"]
|
|
date = "2017-01-26"
|
|
keywords = ["cryptography"]
|
|
url = "https://github.com/dnaq/sodiumoxide/issues/154"
|
|
title = "scalarmult() vulnerable to degenerate public keys"
|
|
description = """
|
|
The `scalarmult()` function included in previous versions of this crate
|
|
accepted all-zero public keys, for which the resulting Diffie-Hellman shared
|
|
secret will always be zero regardless of the private key used.
|
|
|
|
This issue was fixed by checking for this class of keys and rejecting them
|
|
if they are used.
|
|
"""
|