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 18 matching lines...) Expand all Loading... |
29 // For more information about how this list is generated, and how to get off | 29 // For more information about how this list is generated, and how to get off |
30 // of it, see: | 30 // of it, see: |
31 // https://sites.google.com/a/chromium.org/dev/Home/third-party-developers | 31 // https://sites.google.com/a/chromium.org/dev/Home/third-party-developers |
32 // NOTE: Please remember to update the DllHash enum in histograms.xml when | 32 // NOTE: Please remember to update the DllHash enum in histograms.xml when |
33 // adding a new value to the blacklist. | 33 // adding a new value to the blacklist. |
34 const wchar_t* g_troublesome_dlls[kTroublesomeDllsMaxCount] = { | 34 const wchar_t* g_troublesome_dlls[kTroublesomeDllsMaxCount] = { |
35 L"activedetect32.dll", // Lenovo One Key Theater. | 35 L"activedetect32.dll", // Lenovo One Key Theater. |
36 // See crbug.com/379218. | 36 // See crbug.com/379218. |
37 L"activedetect64.dll", // Lenovo One Key Theater. | 37 L"activedetect64.dll", // Lenovo One Key Theater. |
38 L"bitguard.dll", // Unknown (suspected malware). | 38 L"bitguard.dll", // Unknown (suspected malware). |
39 L"cespy.dll", // CovenantEyes. | |
40 L"chrmxtn.dll", // Unknown (keystroke logger). | 39 L"chrmxtn.dll", // Unknown (keystroke logger). |
41 L"cplushook.dll", // Unknown (suspected malware). | 40 L"cplushook.dll", // Unknown (suspected malware). |
42 L"datamngr.dll", // Unknown (suspected adware). | 41 L"datamngr.dll", // Unknown (suspected adware). |
43 L"hk.dll", // Unknown (keystroke logger). | 42 L"hk.dll", // Unknown (keystroke logger). |
44 L"libapi2hook.dll", // V-Bates. | 43 L"libapi2hook.dll", // V-Bates. |
45 L"libinject.dll", // V-Bates. | 44 L"libinject.dll", // V-Bates. |
46 L"libinject2.dll", // V-Bates. | 45 L"libinject2.dll", // V-Bates. |
47 L"libredir2.dll", // V-Bates. | 46 L"libredir2.dll", // V-Bates. |
48 L"libsvn_tsvn32.dll", // TortoiseSVN. | 47 L"libsvn_tsvn32.dll", // TortoiseSVN. |
49 L"libwinhook.dll", // V-Bates. | 48 L"libwinhook.dll", // V-Bates. |
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
433 break; | 432 break; |
434 value_buffer[value_len - 1] = L'\0'; | 433 value_buffer[value_len - 1] = L'\0'; |
435 AddDllToBlacklist(&value_buffer[0]); | 434 AddDllToBlacklist(&value_buffer[0]); |
436 } | 435 } |
437 | 436 |
438 ::RegCloseKey(key); | 437 ::RegCloseKey(key); |
439 return; | 438 return; |
440 } | 439 } |
441 | 440 |
442 } // namespace blacklist | 441 } // namespace blacklist |
OLD | NEW |