From edfbe64d47d7cdd043bbca5abf6622f0a2a65918 Mon Sep 17 00:00:00 2001 From: "Sergey \"Shnatsel\" Davidoff" Date: Wed, 29 Sep 2021 17:58:28 +0200 Subject: [PATCH] arrow DecimalArray advisory (#1058) * Create RUSTSEC-0000-0000.md * `url` instead of `references` * remove references to writes --- crates/arrow/RUSTSEC-0000-0000.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 crates/arrow/RUSTSEC-0000-0000.md diff --git a/crates/arrow/RUSTSEC-0000-0000.md b/crates/arrow/RUSTSEC-0000-0000.md new file mode 100644 index 0000000..dc01bfa --- /dev/null +++ b/crates/arrow/RUSTSEC-0000-0000.md @@ -0,0 +1,18 @@ +```toml +[advisory] +id = "RUSTSEC-0000-0000" +package = "arrow" +date = "2021-09-14" +url = "https://github.com/apache/arrow-rs/issues/775" +categories = ["memory-exposure"] +keywords = ["buffer-overflow"] + +[versions] +patched = [] +``` + +# `DecimalArray` does not perform bound checks on accessing values and offsets + +`DecimalArray` performs insufficient bounds checks, +which allows out-of-bounds reads in safe code +if the lenght of the backing buffer is not a multiple of 16.