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

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

Issue 777083002: Block Samsung Smart Security ESCORT dlls from loading into renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 | 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 L"assistant_x64.dll", // Unknown. 50 L"assistant_x64.dll", // Unknown.
51 L"avcuf64.dll", // Bit Defender Internet Security x64. 51 L"avcuf64.dll", // Bit Defender Internet Security x64.
52 L"avgrsstx.dll", // AVG 8. 52 L"avgrsstx.dll", // AVG 8.
53 L"babylonchromepi.dll", // Babylon translator. 53 L"babylonchromepi.dll", // Babylon translator.
54 L"btkeyind.dll", // Widcomm Bluetooth. 54 L"btkeyind.dll", // Widcomm Bluetooth.
55 L"cmcsyshk.dll", // CMC Internet Security. 55 L"cmcsyshk.dll", // CMC Internet Security.
56 L"cmsetac.dll", // Unknown (suspected malware). 56 L"cmsetac.dll", // Unknown (suspected malware).
57 L"cooliris.dll", // CoolIris. 57 L"cooliris.dll", // CoolIris.
58 L"dockshellhook.dll", // Stardock Objectdock. 58 L"dockshellhook.dll", // Stardock Objectdock.
59 L"easyhook32.dll", // GDIPP and others. 59 L"easyhook32.dll", // GDIPP and others.
60 L"esspd.dll", // Samsung Smart Security ESCORT.
60 L"googledesktopnetwork3.dll", // Google Desktop Search v5. 61 L"googledesktopnetwork3.dll", // Google Desktop Search v5.
61 L"fwhook.dll", // PC Tools Firewall Plus. 62 L"fwhook.dll", // PC Tools Firewall Plus.
62 L"hookprocesscreation.dll", // Blumentals Program protector. 63 L"hookprocesscreation.dll", // Blumentals Program protector.
63 L"hookterminateapis.dll", // Blumentals and Cyberprinter. 64 L"hookterminateapis.dll", // Blumentals and Cyberprinter.
64 L"hookprintapis.dll", // Cyberprinter. 65 L"hookprintapis.dll", // Cyberprinter.
65 L"imon.dll", // NOD32 Antivirus. 66 L"imon.dll", // NOD32 Antivirus.
67 L"icatcdll.dll", // Samsung Smart Security ESCORT.
68 L"icdcnl.dll", // Samsung Smart Security ESCORT.
66 L"ioloHL.dll", // Iolo (System Mechanic). 69 L"ioloHL.dll", // Iolo (System Mechanic).
67 L"kloehk.dll", // Kaspersky Internet Security. 70 L"kloehk.dll", // Kaspersky Internet Security.
68 L"lawenforcer.dll", // Spyware-Browser AntiSpyware (Spybro). 71 L"lawenforcer.dll", // Spyware-Browser AntiSpyware (Spybro).
69 L"libdivx.dll", // DivX. 72 L"libdivx.dll", // DivX.
70 L"lvprcinj01.dll", // Logitech QuickCam. 73 L"lvprcinj01.dll", // Logitech QuickCam.
71 L"madchook.dll", // Madshi (generic hooking library). 74 L"madchook.dll", // Madshi (generic hooking library).
72 L"mdnsnsp.dll", // Bonjour. 75 L"mdnsnsp.dll", // Bonjour.
73 L"moonsysh.dll", // Moon Secure Antivirus. 76 L"moonsysh.dll", // Moon Secure Antivirus.
74 L"mpk.dll", // KGB Spy. 77 L"mpk.dll", // KGB Spy.
75 L"npdivx32.dll", // DivX. 78 L"npdivx32.dll", // DivX.
(...skipping 684 matching lines...) Expand 10 before | Expand all | Expand 10 after
760 } 763 }
761 764
762 return false; 765 return false;
763 } 766 }
764 767
765 bool BrokerAddTargetPeer(HANDLE peer_process) { 768 bool BrokerAddTargetPeer(HANDLE peer_process) {
766 return g_broker_services->AddTargetPeer(peer_process) == sandbox::SBOX_ALL_OK; 769 return g_broker_services->AddTargetPeer(peer_process) == sandbox::SBOX_ALL_OK;
767 } 770 }
768 771
769 } // namespace content 772 } // 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