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

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

Issue 1158003002: Add offerswizarddll.dll to Chrome's Browser's Blacklist (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
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