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

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

Issue 1100413002: Add minisp32.dll to Chrome's Browser's Blacklist (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 L"explorerex.dll", // Unknown (suspected adware). 44 L"explorerex.dll", // Unknown (suspected adware).
45 L"hk.dll", // Unknown (keystroke logger). 45 L"hk.dll", // Unknown (keystroke logger).
46 L"libapi2hook.dll", // V-Bates. 46 L"libapi2hook.dll", // V-Bates.
47 L"libinject.dll", // V-Bates. 47 L"libinject.dll", // V-Bates.
48 L"libinject2.dll", // V-Bates. 48 L"libinject2.dll", // V-Bates.
49 L"libredir2.dll", // V-Bates. 49 L"libredir2.dll", // V-Bates.
50 L"libsvn_tsvn32.dll", // TortoiseSVN. 50 L"libsvn_tsvn32.dll", // TortoiseSVN.
51 L"libwinhook.dll", // V-Bates. 51 L"libwinhook.dll", // V-Bates.
52 L"lmrn.dll", // Unknown. 52 L"lmrn.dll", // Unknown.
53 L"minisp.dll", // Unknown (suspected malware). 53 L"minisp.dll", // Unknown (suspected malware).
54 L"minisp32.dll", // Unknown (suspected malware).
54 L"safetynut.dll", // Unknown (suspected adware). 55 L"safetynut.dll", // Unknown (suspected adware).
55 L"smdmf.dll", // Unknown (suspected adware). 56 L"smdmf.dll", // Unknown (suspected adware).
56 L"systemk.dll", // Unknown (suspected adware). 57 L"systemk.dll", // Unknown (suspected adware).
57 L"vntsrv.dll", // Virtual New Tab by APN LLC. 58 L"vntsrv.dll", // Virtual New Tab by APN LLC.
58 L"wajam_goblin_64.dll", // Wajam Internet Technologies. 59 L"wajam_goblin_64.dll", // Wajam Internet Technologies.
59 L"wajam_goblin.dll", // Wajam Internet Technologies. 60 L"wajam_goblin.dll", // Wajam Internet Technologies.
60 L"windowsapihookdll32.dll", // Lenovo One Key Theater. 61 L"windowsapihookdll32.dll", // Lenovo One Key Theater.
61 // See crbug.com/379218. 62 // See crbug.com/379218.
62 L"windowsapihookdll64.dll", // Lenovo One Key Theater. 63 L"windowsapihookdll64.dll", // Lenovo One Key Theater.
63 L"virtualcamera.ax", // %PROGRAMFILES%\ASUS\VirtualCamera. 64 L"virtualcamera.ax", // %PROGRAMFILES%\ASUS\VirtualCamera.
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 break; 442 break;
442 value_buffer[value_len - 1] = L'\0'; 443 value_buffer[value_len - 1] = L'\0';
443 AddDllToBlacklist(&value_buffer[0]); 444 AddDllToBlacklist(&value_buffer[0]);
444 } 445 }
445 446
446 ::RegCloseKey(key); 447 ::RegCloseKey(key);
447 return; 448 return;
448 } 449 }
449 450
450 } // namespace blacklist 451 } // 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