Add advisory for out-of-bounds read in array-queue.

This commit is contained in:
Ammar Askar
2020-09-26 00:49:15 -07:00
parent 92e5c88a73
commit a1076cfa18

View File

@@ -0,0 +1,16 @@
[advisory]
id = "RUSTSEC-0000-0000"
package = "array-queue"
date = "2020-09-26"
title = "array_queue pop_back allows an out-of-bounds read."
url = "https://github.com/raviqqe/array-queue/issues/2"
description = """
array_queue implements a circular queue that wraps around an array. However, it
fails to properly index into the array in the `pop_back` function allowing the
reading of previously dropped or uninitialized memory.
"""
keywords = ["memory-corruption", "uninitialized-memory"]
[versions]
patched = []