Skip to content
Snippets Groups Projects
Verified Commit 925d8e63 authored by Dan Ballard's avatar Dan Ballard Committed by Pier Angelo Vendrame
Browse files

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

parent 7e253a0e
No related branches found
No related tags found
1 merge request!543Tor Browser 12.5a 102.8.0esr rebase
......@@ -531,7 +531,7 @@ continue_loading:
return ret;
}
#if defined(NIGHTLY_BUILD)
#if defined(NIGHTLY_BUILD) || defined(BASE_BROWSER)
// 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)
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)
// 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.
Finish editing this message first!
Please register or to comment