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