diff --git a/crates/openssl/RUSTSEC-2023-0072.md b/crates/openssl/RUSTSEC-2023-0072.md index dfed65d..e8e5836 100644 --- a/crates/openssl/RUSTSEC-2023-0072.md +++ b/crates/openssl/RUSTSEC-2023-0072.md @@ -16,6 +16,6 @@ patched = [">= 0.10.60"] # `openssl` `X509StoreRef::objects` is unsound -This function returned a reference into an OpenSSL datastructure, but there was no way to ensure OpenSSL would not mutate the datastructure behind ones back. +This function returned a shared reference into an OpenSSL datastructure but did not account for interior mutability. OpenSSL may modify the data behind this reference, meaning accesses can race and the reference is unsound. Use of this function should be replaced with `X509StoreRef::all_certificates`.