| 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 24 matching lines...) Expand all Loading... |
| 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"bsvc.dll", // Unknown (suspected adware). | 39 L"bsvc.dll", // Unknown (suspected adware). |
| 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"crdli.dll", // Linkury Inc. | 42 L"crdli.dll", // Linkury Inc. |
| 43 L"crdli64.dll", // Linkury Inc. | 43 L"crdli64.dll", // Linkury Inc. |
| 44 L"datamngr.dll", // Unknown (suspected adware). | 44 L"datamngr.dll", // Unknown (suspected adware). |
| 45 L"dpinterface32.dll", // Unknown (suspected adware). |
| 45 L"explorerex.dll", // Unknown (suspected adware). | 46 L"explorerex.dll", // Unknown (suspected adware). |
| 46 L"hk.dll", // Unknown (keystroke logger). | 47 L"hk.dll", // Unknown (keystroke logger). |
| 47 L"libapi2hook.dll", // V-Bates. | 48 L"libapi2hook.dll", // V-Bates. |
| 48 L"libinject.dll", // V-Bates. | 49 L"libinject.dll", // V-Bates. |
| 49 L"libinject2.dll", // V-Bates. | 50 L"libinject2.dll", // V-Bates. |
| 50 L"libredir2.dll", // V-Bates. | 51 L"libredir2.dll", // V-Bates. |
| 51 L"libsvn_tsvn32.dll", // TortoiseSVN. | 52 L"libsvn_tsvn32.dll", // TortoiseSVN. |
| 52 L"libwinhook.dll", // V-Bates. | 53 L"libwinhook.dll", // V-Bates. |
| 53 L"lmrn.dll", // Unknown. | 54 L"lmrn.dll", // Unknown. |
| 54 L"minisp.dll", // Unknown (suspected malware). | 55 L"minisp.dll", // Unknown (suspected malware). |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 break; | 445 break; |
| 445 value_buffer[value_len - 1] = L'\0'; | 446 value_buffer[value_len - 1] = L'\0'; |
| 446 AddDllToBlacklist(&value_buffer[0]); | 447 AddDllToBlacklist(&value_buffer[0]); |
| 447 } | 448 } |
| 448 | 449 |
| 449 ::RegCloseKey(key); | 450 ::RegCloseKey(key); |
| 450 return; | 451 return; |
| 451 } | 452 } |
| 452 | 453 |
| 453 } // namespace blacklist | 454 } // namespace blacklist |
| OLD | NEW |