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"bsvc.dll", // Unknown (suspected adware). |
39 L"chrmxtn.dll", // Unknown (keystroke logger). | 40 L"chrmxtn.dll", // Unknown (keystroke logger). |
40 L"cplushook.dll", // Unknown (suspected malware). | 41 L"cplushook.dll", // Unknown (suspected malware). |
41 L"crdli.dll", // Linkury Inc. | 42 L"crdli.dll", // Linkury Inc. |
42 L"crdli64.dll", // Linkury Inc. | 43 L"crdli64.dll", // Linkury Inc. |
43 L"datamngr.dll", // Unknown (suspected adware). | 44 L"datamngr.dll", // Unknown (suspected adware). |
44 L"explorerex.dll", // Unknown (suspected adware). | 45 L"explorerex.dll", // Unknown (suspected adware). |
45 L"hk.dll", // Unknown (keystroke logger). | 46 L"hk.dll", // Unknown (keystroke logger). |
46 L"libapi2hook.dll", // V-Bates. | 47 L"libapi2hook.dll", // V-Bates. |
47 L"libinject.dll", // V-Bates. | 48 L"libinject.dll", // V-Bates. |
48 L"libinject2.dll", // V-Bates. | 49 L"libinject2.dll", // V-Bates. |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
442 break; | 443 break; |
443 value_buffer[value_len - 1] = L'\0'; | 444 value_buffer[value_len - 1] = L'\0'; |
444 AddDllToBlacklist(&value_buffer[0]); | 445 AddDllToBlacklist(&value_buffer[0]); |
445 } | 446 } |
446 | 447 |
447 ::RegCloseKey(key); | 448 ::RegCloseKey(key); |
448 return; | 449 return; |
449 } | 450 } |
450 | 451 |
451 } // namespace blacklist | 452 } // namespace blacklist |
OLD | NEW |