From 1446b624714537efa255adf0a5a28df195a80f8e Mon Sep 17 00:00:00 2001 From: JOE1994 Date: Wed, 27 Jan 2021 12:11:22 -0500 Subject: [PATCH] Report 0066-kekbit to RustSec --- crates/kekbit/RUSTSEC-0000-0000.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 crates/kekbit/RUSTSEC-0000-0000.md diff --git a/crates/kekbit/RUSTSEC-0000-0000.md b/crates/kekbit/RUSTSEC-0000-0000.md new file mode 100644 index 0000000..0ceb8e4 --- /dev/null +++ b/crates/kekbit/RUSTSEC-0000-0000.md @@ -0,0 +1,15 @@ +```toml +[advisory] +id = "RUSTSEC-0000-0000" +package = "kekbit" +date = "2020-12-18" +url = "https://github.com/motoras/kekbit/issues/34" +categories = ["memory-corruption", "thread-safety"] + +[versions] +patched = [] +``` + +# ShmWriter allows sending non-Send type across threads + +Affected versions of this crate implement `Send` for `ShmWriter` without requiring `H: Send`. This allows users to send `H: !Send` to other threads, which can potentially lead to data races and undefined behavior.