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 20 matching lines...) Expand all Loading... |
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"chrmxtn.dll", // Unknown (keystroke logger). | 39 L"chrmxtn.dll", // Unknown (keystroke logger). |
40 L"cplushook.dll", // Unknown (suspected malware). | 40 L"cplushook.dll", // Unknown (suspected malware). |
| 41 L"crdli.dll", // Linkury Inc. |
| 42 L"crdli64.dll", // Linkury Inc. |
41 L"datamngr.dll", // Unknown (suspected adware). | 43 L"datamngr.dll", // Unknown (suspected adware). |
42 L"hk.dll", // Unknown (keystroke logger). | 44 L"hk.dll", // Unknown (keystroke logger). |
43 L"libapi2hook.dll", // V-Bates. | 45 L"libapi2hook.dll", // V-Bates. |
44 L"libinject.dll", // V-Bates. | 46 L"libinject.dll", // V-Bates. |
45 L"libinject2.dll", // V-Bates. | 47 L"libinject2.dll", // V-Bates. |
46 L"libredir2.dll", // V-Bates. | 48 L"libredir2.dll", // V-Bates. |
47 L"libsvn_tsvn32.dll", // TortoiseSVN. | 49 L"libsvn_tsvn32.dll", // TortoiseSVN. |
48 L"libwinhook.dll", // V-Bates. | 50 L"libwinhook.dll", // V-Bates. |
49 L"lmrn.dll", // Unknown. | 51 L"lmrn.dll", // Unknown. |
50 L"minisp.dll", // Unknown (suspected malware). | 52 L"minisp.dll", // Unknown (suspected malware). |
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 break; | 439 break; |
438 value_buffer[value_len - 1] = L'\0'; | 440 value_buffer[value_len - 1] = L'\0'; |
439 AddDllToBlacklist(&value_buffer[0]); | 441 AddDllToBlacklist(&value_buffer[0]); |
440 } | 442 } |
441 | 443 |
442 ::RegCloseKey(key); | 444 ::RegCloseKey(key); |
443 return; | 445 return; |
444 } | 446 } |
445 | 447 |
446 } // namespace blacklist | 448 } // namespace blacklist |
OLD | NEW |