Skip to content
Snippets Groups Projects
Verified Commit c78741f2 authored by Dan Ballard's avatar Dan Ballard Committed by ma1
Browse files

Bug 41149: Re-enable DLL injection protection in all builds not just nightlies

parent 5a3057bf
Branches
Tags
1 merge request!712Bug 41908: Rebased on 102.14
......@@ -531,7 +531,7 @@ continue_loading:
return ret;
}
#if defined(NIGHTLY_BUILD)
#if defined(NIGHTLY_BUILD) || defined(BASE_BROWSER_VERSION)
// Map of specific thread proc addresses we should block. In particular,
// LoadLibrary* APIs which indicate DLL injection
static void* gStartAddressesToBlock[4];
......@@ -544,7 +544,7 @@ static bool ShouldBlockThread(void* aStartAddress) {
return false;
}
#if defined(NIGHTLY_BUILD)
#if defined(NIGHTLY_BUILD) || defined(BASE_BROWSER_VERSION)
for (auto p : gStartAddressesToBlock) {
if (p == aStartAddress) {
return true;
......@@ -618,7 +618,7 @@ MFBT_API void DllBlocklist_Initialize(uint32_t aInitFlags) {
}
}
#if defined(NIGHTLY_BUILD)
#if defined(NIGHTLY_BUILD) || defined(BASE_BROWSER_VERSION)
// Populate a list of thread start addresses to block.
HMODULE hKernel = GetModuleHandleW(L"kernel32.dll");
if (hKernel) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment