| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome_elf/blacklist/blacklist.h" | 5 #include "chrome_elf/blacklist/blacklist.h" |
| 6 | 6 |
| 7 #include <assert.h> | 7 #include <assert.h> |
| 8 #include <string.h> | 8 #include <string.h> |
| 9 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 // http://blogs.msdn.com/oldnewthing/archive/2004/10/25/247180.aspx | 21 // http://blogs.msdn.com/oldnewthing/archive/2004/10/25/247180.aspx |
| 22 extern "C" IMAGE_DOS_HEADER __ImageBase; | 22 extern "C" IMAGE_DOS_HEADER __ImageBase; |
| 23 | 23 |
| 24 namespace blacklist{ | 24 namespace blacklist{ |
| 25 | 25 |
| 26 const wchar_t* g_troublesome_dlls[kTroublesomeDllsMaxCount] = { | 26 const wchar_t* g_troublesome_dlls[kTroublesomeDllsMaxCount] = { |
| 27 L"datamngr.dll", // Unknown (suspected adware). | 27 L"datamngr.dll", // Unknown (suspected adware). |
| 28 L"hk.dll", // Unknown (keystroke logger). | 28 L"hk.dll", // Unknown (keystroke logger). |
| 29 L"libsvn_tsvn32.dll", // TortoiseSVN. | 29 L"libsvn_tsvn32.dll", // TortoiseSVN. |
| 30 L"lmrn.dll", // Unknown. | 30 L"lmrn.dll", // Unknown. |
| 31 L"activedetect32.dll", // Lenovo One Key Theater. |
| 32 // See crbug.com/379218. |
| 33 L"windowsapihookdll32.dll", // Lenovo One Key Theater. |
| 34 L"activedetect64.dll", // Lenovo One Key Theater. |
| 35 L"windowsapihookdll64.dll", // Lenovo One Key Theater. |
| 31 // Keep this null pointer here to mark the end of the list. | 36 // Keep this null pointer here to mark the end of the list. |
| 32 NULL, | 37 NULL, |
| 33 }; | 38 }; |
| 34 | 39 |
| 35 bool g_blocked_dlls[kTroublesomeDllsMaxCount] = {}; | 40 bool g_blocked_dlls[kTroublesomeDllsMaxCount] = {}; |
| 36 int g_num_blocked_dlls = 0; | 41 int g_num_blocked_dlls = 0; |
| 37 | 42 |
| 38 } // namespace blacklist | 43 } // namespace blacklist |
| 39 | 44 |
| 40 // Allocate storage for thunks in a page of this module to save on doing | 45 // Allocate storage for thunks in a page of this module to save on doing |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 } | 388 } |
| 384 | 389 |
| 385 // Delete the finch registry key to clear the values. | 390 // Delete the finch registry key to clear the values. |
| 386 result = ::RegDeleteKey(key, L""); | 391 result = ::RegDeleteKey(key, L""); |
| 387 | 392 |
| 388 ::RegCloseKey(key); | 393 ::RegCloseKey(key); |
| 389 return result == ERROR_SUCCESS; | 394 return result == ERROR_SUCCESS; |
| 390 } | 395 } |
| 391 | 396 |
| 392 } // namespace blacklist | 397 } // namespace blacklist |
| OLD | NEW |