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

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

Issue 1131943002: Add dpinterface32.dll to Chrome's browser's blacklist (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ensure dll name has required 32 at end 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 24 matching lines...) Expand all
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
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
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