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 23 matching lines...) Expand all Loading... |
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. | 39 L"cespy.dll", // CovenantEyes. |
40 L"chrmxtn.dll", // Unknown (keystroke logger). | 40 L"chrmxtn.dll", // Unknown (keystroke logger). |
41 L"cplushook.dll", // Unknown (suspected malware). | 41 L"cplushook.dll", // Unknown (suspected malware). |
42 L"datamngr.dll", // Unknown (suspected adware). | 42 L"datamngr.dll", // Unknown (suspected adware). |
43 L"hk.dll", // Unknown (keystroke logger). | 43 L"hk.dll", // Unknown (keystroke logger). |
| 44 L"libapi2hook.dll", // V-Bates. |
| 45 L"libinject.dll", // V-Bates. |
| 46 L"libinject2.dll", // V-Bates. |
| 47 L"libredir2.dll", // V-Bates. |
44 L"libsvn_tsvn32.dll", // TortoiseSVN. | 48 L"libsvn_tsvn32.dll", // TortoiseSVN. |
| 49 L"libwinhook.dll", // V-Bates. |
45 L"lmrn.dll", // Unknown. | 50 L"lmrn.dll", // Unknown. |
46 L"minisp.dll", // Unknown (suspected malware). | 51 L"minisp.dll", // Unknown (suspected malware). |
47 L"scdetour.dll", // Quick Heal Antivirus. | 52 L"scdetour.dll", // Quick Heal Antivirus. |
48 // See crbug.com/382561. | 53 // See crbug.com/382561. |
49 L"systemk.dll", // Unknown (suspected adware). | 54 L"systemk.dll", // Unknown (suspected adware). |
50 L"windowsapihookdll32.dll", // Lenovo One Key Theater. | 55 L"windowsapihookdll32.dll", // Lenovo One Key Theater. |
51 // See crbug.com/379218. | 56 // See crbug.com/379218. |
52 L"windowsapihookdll64.dll", // Lenovo One Key Theater. | 57 L"windowsapihookdll64.dll", // Lenovo One Key Theater. |
53 // Keep this null pointer here to mark the end of the list. | 58 // Keep this null pointer here to mark the end of the list. |
54 NULL, | 59 NULL, |
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 break; | 427 break; |
423 value_buffer[value_len - 1] = L'\0'; | 428 value_buffer[value_len - 1] = L'\0'; |
424 AddDllToBlacklist(&value_buffer[0]); | 429 AddDllToBlacklist(&value_buffer[0]); |
425 } | 430 } |
426 | 431 |
427 ::RegCloseKey(key); | 432 ::RegCloseKey(key); |
428 return; | 433 return; |
429 } | 434 } |
430 | 435 |
431 } // namespace blacklist | 436 } // namespace blacklist |
OLD | NEW |