From da60893decca968638ea0f95c177d21bf7b7ae88 Mon Sep 17 00:00:00 2001 From: Derek Bruening Date: Tue, 24 Sep 2024 00:27:09 -0400 Subject: [PATCH] i#2498 bcrypt init: Add bcrypt.dll to allowlist Adds bcrypt.dll to the allowlist of known libraries we expect to potentially see inside the drmemory.exe process. Issue: #2498 --- drmemory/frontend.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drmemory/frontend.c b/drmemory/frontend.c index f6362723..ffe12672 100644 --- a/drmemory/frontend.c +++ b/drmemory/frontend.c @@ -1,5 +1,5 @@ /* ********************************************************** - * Copyright (c) 2010-2021 Google, Inc. All rights reserved. + * Copyright (c) 2010-2024 Google, Inc. All rights reserved. * Copyright (c) 2010 VMware, Inc. All rights reserved. * **********************************************************/ @@ -486,6 +486,7 @@ static const TCHAR * const known_libs[] = { L"apphelp.dll", L"cryptbase.dll", L"bcryptprimitives.dll", + L"bcrypt.dll", L"sspicli.dll", L"rpcrt4.dll", L"advapi32.dll",