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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 L"explorerex.dll", // Unknown (suspected adware). | 44 L"explorerex.dll", // Unknown (suspected adware). |
45 L"hk.dll", // Unknown (keystroke logger). | 45 L"hk.dll", // Unknown (keystroke logger). |
46 L"libapi2hook.dll", // V-Bates. | 46 L"libapi2hook.dll", // V-Bates. |
47 L"libinject.dll", // V-Bates. | 47 L"libinject.dll", // V-Bates. |
48 L"libinject2.dll", // V-Bates. | 48 L"libinject2.dll", // V-Bates. |
49 L"libredir2.dll", // V-Bates. | 49 L"libredir2.dll", // V-Bates. |
50 L"libsvn_tsvn32.dll", // TortoiseSVN. | 50 L"libsvn_tsvn32.dll", // TortoiseSVN. |
51 L"libwinhook.dll", // V-Bates. | 51 L"libwinhook.dll", // V-Bates. |
52 L"lmrn.dll", // Unknown. | 52 L"lmrn.dll", // Unknown. |
53 L"minisp.dll", // Unknown (suspected malware). | 53 L"minisp.dll", // Unknown (suspected malware). |
| 54 L"minisp32.dll", // Unknown (suspected malware). |
54 L"safetynut.dll", // Unknown (suspected adware). | 55 L"safetynut.dll", // Unknown (suspected adware). |
55 L"smdmf.dll", // Unknown (suspected adware). | 56 L"smdmf.dll", // Unknown (suspected adware). |
56 L"systemk.dll", // Unknown (suspected adware). | 57 L"systemk.dll", // Unknown (suspected adware). |
57 L"vntsrv.dll", // Virtual New Tab by APN LLC. | 58 L"vntsrv.dll", // Virtual New Tab by APN LLC. |
58 L"wajam_goblin_64.dll", // Wajam Internet Technologies. | 59 L"wajam_goblin_64.dll", // Wajam Internet Technologies. |
59 L"wajam_goblin.dll", // Wajam Internet Technologies. | 60 L"wajam_goblin.dll", // Wajam Internet Technologies. |
60 L"windowsapihookdll32.dll", // Lenovo One Key Theater. | 61 L"windowsapihookdll32.dll", // Lenovo One Key Theater. |
61 // See crbug.com/379218. | 62 // See crbug.com/379218. |
62 L"windowsapihookdll64.dll", // Lenovo One Key Theater. | 63 L"windowsapihookdll64.dll", // Lenovo One Key Theater. |
63 L"virtualcamera.ax", // %PROGRAMFILES%\ASUS\VirtualCamera. | 64 L"virtualcamera.ax", // %PROGRAMFILES%\ASUS\VirtualCamera. |
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 break; | 442 break; |
442 value_buffer[value_len - 1] = L'\0'; | 443 value_buffer[value_len - 1] = L'\0'; |
443 AddDllToBlacklist(&value_buffer[0]); | 444 AddDllToBlacklist(&value_buffer[0]); |
444 } | 445 } |
445 | 446 |
446 ::RegCloseKey(key); | 447 ::RegCloseKey(key); |
447 return; | 448 return; |
448 } | 449 } |
449 | 450 |
450 } // namespace blacklist | 451 } // namespace blacklist |
OLD | NEW |