Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Side by Side Diff: chrome_elf/blacklist/blacklist.cc

Issue 1110123002: Add bsvc.dll to Chrome's Browser's Blacklist (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding two values to dllhash Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 18 matching lines...) Expand all
29 // For more information about how this list is generated, and how to get off 29 // For more information about how this list is generated, and how to get off
30 // of it, see: 30 // of it, see:
31 // https://sites.google.com/a/chromium.org/dev/Home/third-party-developers 31 // https://sites.google.com/a/chromium.org/dev/Home/third-party-developers
32 // NOTE: Please remember to update the DllHash enum in histograms.xml when 32 // NOTE: Please remember to update the DllHash enum in histograms.xml when
33 // adding a new value to the blacklist. 33 // adding a new value to the blacklist.
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"bsvc.dll", // Unknown (suspected adware).
39 L"chrmxtn.dll", // Unknown (keystroke logger). 40 L"chrmxtn.dll", // Unknown (keystroke logger).
40 L"cplushook.dll", // Unknown (suspected malware). 41 L"cplushook.dll", // Unknown (suspected malware).
41 L"crdli.dll", // Linkury Inc. 42 L"crdli.dll", // Linkury Inc.
42 L"crdli64.dll", // Linkury Inc. 43 L"crdli64.dll", // Linkury Inc.
43 L"datamngr.dll", // Unknown (suspected adware). 44 L"datamngr.dll", // Unknown (suspected adware).
44 L"explorerex.dll", // Unknown (suspected adware). 45 L"explorerex.dll", // Unknown (suspected adware).
45 L"hk.dll", // Unknown (keystroke logger). 46 L"hk.dll", // Unknown (keystroke logger).
46 L"libapi2hook.dll", // V-Bates. 47 L"libapi2hook.dll", // V-Bates.
47 L"libinject.dll", // V-Bates. 48 L"libinject.dll", // V-Bates.
48 L"libinject2.dll", // V-Bates. 49 L"libinject2.dll", // V-Bates.
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 break; 443 break;
443 value_buffer[value_len - 1] = L'\0'; 444 value_buffer[value_len - 1] = L'\0';
444 AddDllToBlacklist(&value_buffer[0]); 445 AddDllToBlacklist(&value_buffer[0]);
445 } 446 }
446 447
447 ::RegCloseKey(key); 448 ::RegCloseKey(key);
448 return; 449 return;
449 } 450 }
450 451
451 } // namespace blacklist 452 } // namespace blacklist
OLDNEW
« no previous file with comments | « no previous file | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698