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

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

Issue 2004573003: Blacklist rooksbas.dll in sandboxed processes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 | 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 <stddef.h> 7 #include <stddef.h>
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 L"pctavhook.dll", // PC Tools Antivirus. 104 L"pctavhook.dll", // PC Tools Antivirus.
105 L"pctgmhk.dll", // PC Tools Spyware Doctor. 105 L"pctgmhk.dll", // PC Tools Spyware Doctor.
106 L"picrmi32.dll", // PicRec. 106 L"picrmi32.dll", // PicRec.
107 L"picrmi64.dll", // PicRec. 107 L"picrmi64.dll", // PicRec.
108 L"prntrack.dll", // Pharos Systems. 108 L"prntrack.dll", // Pharos Systems.
109 L"protector.dll", // Unknown (suspected malware). 109 L"protector.dll", // Unknown (suspected malware).
110 L"radhslib.dll", // Radiant Naomi Internet Filter. 110 L"radhslib.dll", // Radiant Naomi Internet Filter.
111 L"radprlib.dll", // Radiant Naomi Internet Filter. 111 L"radprlib.dll", // Radiant Naomi Internet Filter.
112 L"rapportnikko.dll", // Trustware Rapport. 112 L"rapportnikko.dll", // Trustware Rapport.
113 L"rlhook.dll", // Trustware Bufferzone. 113 L"rlhook.dll", // Trustware Bufferzone.
114 L"rooksbas.dll", // IBM Trusteer Rapport.
115 L"rooksbas_x64.dll" // IBM Trusteer Rapport.
114 L"rooksdol.dll", // Trustware Rapport. 116 L"rooksdol.dll", // Trustware Rapport.
115 L"rndlpepperbrowserrecordhelper.dll", // RealPlayer. 117 L"rndlpepperbrowserrecordhelper.dll", // RealPlayer.
116 L"rpchromebrowserrecordhelper.dll", // RealPlayer. 118 L"rpchromebrowserrecordhelper.dll", // RealPlayer.
117 L"r3hook.dll", // Kaspersky Internet Security. 119 L"r3hook.dll", // Kaspersky Internet Security.
118 L"sahook.dll", // McAfee Site Advisor. 120 L"sahook.dll", // McAfee Site Advisor.
119 L"sbrige.dll", // Unknown. 121 L"sbrige.dll", // Unknown.
120 L"sc2hook.dll", // Supercopier 2. 122 L"sc2hook.dll", // Supercopier 2.
121 L"sdhook32.dll", // Spybot - Search & Destroy Live Protection. 123 L"sdhook32.dll", // Spybot - Search & Destroy Live Protection.
122 L"sguard.dll", // Iolo (System Guard). 124 L"sguard.dll", // Iolo (System Guard).
123 L"smum32.dll", // Spyware Doctor version 6. 125 L"smum32.dll", // Spyware Doctor version 6.
(...skipping 692 matching lines...) Expand 10 before | Expand all | Expand 10 after
816 } 818 }
817 819
818 delegate->PostSpawnTarget(target.process_handle()); 820 delegate->PostSpawnTarget(target.process_handle());
819 821
820 CHECK(ResumeThread(target.thread_handle()) != static_cast<DWORD>(-1)); 822 CHECK(ResumeThread(target.thread_handle()) != static_cast<DWORD>(-1));
821 *process = base::Process(target.TakeProcessHandle()); 823 *process = base::Process(target.TakeProcessHandle());
822 return sandbox::SBOX_ALL_OK; 824 return sandbox::SBOX_ALL_OK;
823 } 825 }
824 826
825 } // namespace content 827 } // 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