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

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

Issue 1391583004: Blacklist rooksbas.dll in sandboxed processes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: x64 Created 5 years, 2 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 | 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 L"pctavhook.dll", // PC Tools Antivirus. 97 L"pctavhook.dll", // PC Tools Antivirus.
98 L"pctgmhk.dll", // PC Tools Spyware Doctor. 98 L"pctgmhk.dll", // PC Tools Spyware Doctor.
99 L"picrmi32.dll", // PicRec. 99 L"picrmi32.dll", // PicRec.
100 L"picrmi64.dll", // PicRec. 100 L"picrmi64.dll", // PicRec.
101 L"prntrack.dll", // Pharos Systems. 101 L"prntrack.dll", // Pharos Systems.
102 L"protector.dll", // Unknown (suspected malware). 102 L"protector.dll", // Unknown (suspected malware).
103 L"radhslib.dll", // Radiant Naomi Internet Filter. 103 L"radhslib.dll", // Radiant Naomi Internet Filter.
104 L"radprlib.dll", // Radiant Naomi Internet Filter. 104 L"radprlib.dll", // Radiant Naomi Internet Filter.
105 L"rapportnikko.dll", // Trustware Rapport. 105 L"rapportnikko.dll", // Trustware Rapport.
106 L"rlhook.dll", // Trustware Bufferzone. 106 L"rlhook.dll", // Trustware Bufferzone.
107 L"rooksbas.dll", // IBM Trusteer Rapport.
108 L"rooksbas_x64.dll" // IBM Trusteer Rapport.
107 L"rooksdol.dll", // Trustware Rapport. 109 L"rooksdol.dll", // Trustware Rapport.
108 L"rndlpepperbrowserrecordhelper.dll", // RealPlayer. 110 L"rndlpepperbrowserrecordhelper.dll", // RealPlayer.
109 L"rpchromebrowserrecordhelper.dll", // RealPlayer. 111 L"rpchromebrowserrecordhelper.dll", // RealPlayer.
110 L"r3hook.dll", // Kaspersky Internet Security. 112 L"r3hook.dll", // Kaspersky Internet Security.
111 L"sahook.dll", // McAfee Site Advisor. 113 L"sahook.dll", // McAfee Site Advisor.
112 L"sbrige.dll", // Unknown. 114 L"sbrige.dll", // Unknown.
113 L"sc2hook.dll", // Supercopier 2. 115 L"sc2hook.dll", // Supercopier 2.
114 L"sdhook32.dll", // Spybot - Search & Destroy Live Protection. 116 L"sdhook32.dll", // Spybot - Search & Destroy Live Protection.
115 L"sguard.dll", // Iolo (System Guard). 117 L"sguard.dll", // Iolo (System Guard).
116 L"smum32.dll", // Spyware Doctor version 6. 118 L"smum32.dll", // Spyware Doctor version 6.
(...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after
867 } 869 }
868 870
869 return false; 871 return false;
870 } 872 }
871 873
872 bool BrokerAddTargetPeer(HANDLE peer_process) { 874 bool BrokerAddTargetPeer(HANDLE peer_process) {
873 return g_broker_services->AddTargetPeer(peer_process) == sandbox::SBOX_ALL_OK; 875 return g_broker_services->AddTargetPeer(peer_process) == sandbox::SBOX_ALL_OK;
874 } 876 }
875 877
876 } // namespace content 878 } // 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