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