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

Side by Side Diff: content/common/sandbox_win.cc

Issue 308993003: Add Bit Defender Internet Security 64-bit DLL to blacklist. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/common/sandbox_win.h" 5 #include "content/common/sandbox_win.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/base_switches.h" 9 #include "base/base_switches.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 27 matching lines...) Expand all
38 // The DLLs listed here are known (or under strong suspicion) of causing crashes 38 // The DLLs listed here are known (or under strong suspicion) of causing crashes
39 // when they are loaded in the renderer. Note: at runtime we generate short 39 // when they are loaded in the renderer. Note: at runtime we generate short
40 // versions of the dll name only if the dll has an extension. 40 // versions of the dll name only if the dll has an extension.
41 // For more information about how this list is generated, and how to get off 41 // For more information about how this list is generated, and how to get off
42 // of it, see: 42 // of it, see:
43 // https://sites.google.com/a/chromium.org/dev/Home/third-party-developers 43 // https://sites.google.com/a/chromium.org/dev/Home/third-party-developers
44 const wchar_t* const kTroublesomeDlls[] = { 44 const wchar_t* const kTroublesomeDlls[] = {
45 L"adialhk.dll", // Kaspersky Internet Security. 45 L"adialhk.dll", // Kaspersky Internet Security.
46 L"acpiz.dll", // Unknown. 46 L"acpiz.dll", // Unknown.
47 L"akinsofthook32.dll", // Akinsoft Software Engineering. 47 L"akinsofthook32.dll", // Akinsoft Software Engineering.
48 L"avcuf64.dll", // Bit Defender Internet Security x64.
48 L"avgrsstx.dll", // AVG 8. 49 L"avgrsstx.dll", // AVG 8.
49 L"babylonchromepi.dll", // Babylon translator. 50 L"babylonchromepi.dll", // Babylon translator.
50 L"btkeyind.dll", // Widcomm Bluetooth. 51 L"btkeyind.dll", // Widcomm Bluetooth.
51 L"cmcsyshk.dll", // CMC Internet Security. 52 L"cmcsyshk.dll", // CMC Internet Security.
52 L"cmsetac.dll", // Unknown (suspected malware). 53 L"cmsetac.dll", // Unknown (suspected malware).
53 L"cooliris.dll", // CoolIris. 54 L"cooliris.dll", // CoolIris.
54 L"dockshellhook.dll", // Stardock Objectdock. 55 L"dockshellhook.dll", // Stardock Objectdock.
55 L"easyhook32.dll", // GDIPP and others. 56 L"easyhook32.dll", // GDIPP and others.
56 L"googledesktopnetwork3.dll", // Google Desktop Search v5. 57 L"googledesktopnetwork3.dll", // Google Desktop Search v5.
57 L"fwhook.dll", // PC Tools Firewall Plus. 58 L"fwhook.dll", // PC Tools Firewall Plus.
(...skipping 683 matching lines...) Expand 10 before | Expand all | Expand 10 after
741 } 742 }
742 743
743 return false; 744 return false;
744 } 745 }
745 746
746 bool BrokerAddTargetPeer(HANDLE peer_process) { 747 bool BrokerAddTargetPeer(HANDLE peer_process) {
747 return g_broker_services->AddTargetPeer(peer_process) == sandbox::SBOX_ALL_OK; 748 return g_broker_services->AddTargetPeer(peer_process) == sandbox::SBOX_ALL_OK;
748 } 749 }
749 750
750 } // namespace content 751 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698