mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
5b43da8675
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@1314 21ef857c-d57f-4fe0-8362-d861dc6d29cd
342 lines
11 KiB
C#
342 lines
11 KiB
C#
/*
|
|
* Process Hacker -
|
|
* terminator tool
|
|
*
|
|
* Copyright (C) 2008 wj32
|
|
*
|
|
* This file is part of Process Hacker.
|
|
*
|
|
* Process Hacker is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Process Hacker is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Process Hacker. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.InteropServices;
|
|
using System.Threading;
|
|
using System.Windows.Forms;
|
|
using ProcessHacker.Native;
|
|
using ProcessHacker.Native.Api;
|
|
using ProcessHacker.Native.Objects;
|
|
using ProcessHacker.Native.Security;
|
|
|
|
namespace ProcessHacker
|
|
{
|
|
public partial class TerminatorWindow : Form
|
|
{
|
|
private int _pid;
|
|
private List<string> _tests = new List<string>();
|
|
|
|
public TerminatorWindow(int PID)
|
|
{
|
|
InitializeComponent();
|
|
this.AddEscapeToClose();
|
|
|
|
_pid = PID;
|
|
|
|
labelProgress.Text = "";
|
|
|
|
this.AddTest("TP1", "Terminates the process using TerminateProcess");
|
|
this.AddTest("TP2", "Creates a remote thread in the process which terminates the process");
|
|
this.AddTest("TT1", "Terminates the process' threads");
|
|
this.AddTest("TT2", "Modifies the process' threads with contexts which terminate the process");
|
|
this.AddTest("CH1", "Closes the process' handles");
|
|
this.AddTest("TJ1", "Assigns the process to a job object and terminates the job");
|
|
this.AddTest("TD1", "Debugs the process and closes the debug object");
|
|
this.AddTest("TP3", "Terminates the process in kernel-mode (if possible)");
|
|
this.AddTest("TT3", "Terminates the process' threads in kernel-mode (if possible)");
|
|
this.AddTest("M1", "Writes garbage to the process' memory regions");
|
|
this.AddTest("M2", "Sets the page protection of the process' memory regions to PAGE_NOACCESS");
|
|
}
|
|
|
|
private void AddTest(string id, string description)
|
|
{
|
|
ListViewItem item = new ListViewItem();
|
|
|
|
item.Name = id;
|
|
item.Text = id;
|
|
item.Tag = Delegate.CreateDelegate(typeof(MethodInvoker), this, id);
|
|
item.ImageKey = "";
|
|
|
|
item.SubItems.Add(new ListViewItem.ListViewSubItem(item, description));
|
|
|
|
listTests.Items.Add(item);
|
|
_tests.Add(id);
|
|
}
|
|
|
|
private bool RunTest(string id)
|
|
{
|
|
this.Cursor = Cursors.WaitCursor;
|
|
|
|
ListViewItem item = listTests.Items[id];
|
|
|
|
bool hadException = false;
|
|
|
|
try
|
|
{
|
|
(item.Tag as Delegate).DynamicInvoke(null);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
item.ToolTipText = ex.InnerException.Message;
|
|
item.ImageKey = "cross";
|
|
hadException = true;
|
|
}
|
|
|
|
this.Cursor = Cursors.Default;
|
|
|
|
System.Threading.Thread.Sleep(1000);
|
|
|
|
try
|
|
{
|
|
System.Diagnostics.Process.GetProcessById(_pid);
|
|
|
|
if (!hadException)
|
|
{
|
|
item.ToolTipText = "Process was not terminated.";
|
|
item.ImageKey = "cross";
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
// the process doesn't exist (or at least we think it doesn't)
|
|
labelProgress.Text = "Process was terminated.";
|
|
|
|
item.ToolTipText = "This test succeeded";
|
|
item.ImageKey = "tick";
|
|
|
|
return true;
|
|
}
|
|
|
|
// HACK
|
|
Application.DoEvents();
|
|
|
|
return false;
|
|
}
|
|
|
|
private void CH1()
|
|
{
|
|
using (ProcessHandle phandle = new ProcessHandle(_pid, ProcessAccess.DupHandle))
|
|
{
|
|
int i = 0;
|
|
|
|
while (true)
|
|
{
|
|
if (i >= 0x1000)
|
|
break;
|
|
|
|
try
|
|
{
|
|
Win32.DuplicateObject(phandle, new IntPtr(i), 0, 0, DuplicateOptions.CloseSource);
|
|
}
|
|
catch
|
|
{ }
|
|
|
|
i++;
|
|
}
|
|
}
|
|
}
|
|
|
|
private void M1()
|
|
{
|
|
this.M1Internal();
|
|
}
|
|
|
|
private unsafe void M1Internal()
|
|
{
|
|
using (MemoryAlloc alloc = new MemoryAlloc(0x1000))
|
|
{
|
|
using (ProcessHandle phandle = new ProcessHandle(_pid,
|
|
ProcessAccess.QueryInformation |
|
|
Program.MinProcessWriteMemoryRights))
|
|
{
|
|
phandle.EnumMemory((info) =>
|
|
{
|
|
for (int i = 0; i < info.RegionSize; i += 0x1000)
|
|
{
|
|
try
|
|
{
|
|
phandle.WriteMemory(info.BaseAddress.Increment(i), alloc, 0x1000);
|
|
}
|
|
catch
|
|
{ }
|
|
}
|
|
|
|
return true;
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
private void M2()
|
|
{
|
|
using (ProcessHandle phandle = new ProcessHandle(_pid,
|
|
ProcessAccess.QueryInformation | ProcessAccess.VmOperation))
|
|
{
|
|
phandle.EnumMemory((info) =>
|
|
{
|
|
phandle.ProtectMemory(info.BaseAddress, info.RegionSize, MemoryProtection.NoAccess);
|
|
return true;
|
|
});
|
|
}
|
|
}
|
|
|
|
private void TD1()
|
|
{
|
|
using (var dhandle =
|
|
DebugObjectHandle.Create(DebugObjectAccess.ProcessAssign, DebugObjectFlags.KillOnClose))
|
|
{
|
|
using (var phandle = new ProcessHandle(_pid, ProcessAccess.SuspendResume))
|
|
phandle.Debug(dhandle);
|
|
}
|
|
}
|
|
|
|
private void TJ1()
|
|
{
|
|
if (KProcessHacker.Instance != null)
|
|
{
|
|
try
|
|
{
|
|
using (var phandle = new ProcessHandle(_pid, Program.MinProcessQueryRights))
|
|
{
|
|
using (var jhandle = phandle.GetJob(JobObjectAccess.Query | JobObjectAccess.Terminate))
|
|
{
|
|
// Make sure we're not terminating more than one process
|
|
if (jhandle.GetProcessIdList().Length == 1)
|
|
{
|
|
jhandle.Terminate();
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
catch
|
|
{ }
|
|
}
|
|
|
|
using (var jhandle = JobObjectHandle.Create(JobObjectAccess.AssignProcess | JobObjectAccess.Terminate))
|
|
{
|
|
using (ProcessHandle phandle =
|
|
new ProcessHandle(_pid, ProcessAccess.SetQuota | ProcessAccess.Terminate))
|
|
{
|
|
phandle.AssignToJobObject(jhandle);
|
|
}
|
|
|
|
jhandle.Terminate();
|
|
}
|
|
}
|
|
|
|
private void TP1()
|
|
{
|
|
using (ProcessHandle phandle = new ProcessHandle(_pid, ProcessAccess.Terminate))
|
|
{
|
|
// don't use KPH
|
|
if (!Win32.TerminateProcess(phandle, 0))
|
|
Win32.ThrowLastError();
|
|
}
|
|
}
|
|
|
|
private void TP2()
|
|
{
|
|
IntPtr kernel32 = Win32.LoadLibrary("kernel32.dll");
|
|
IntPtr exitProcess = Win32.GetProcAddress(kernel32, "ExitProcess");
|
|
int threadId;
|
|
|
|
using (ProcessHandle phandle = new ProcessHandle(_pid, ProcessAccess.CreateThread))
|
|
if (!Win32.CreateRemoteThread(phandle, IntPtr.Zero, 0, exitProcess, IntPtr.Zero, 0, out threadId))
|
|
Win32.ThrowLastError();
|
|
}
|
|
|
|
private void TP3()
|
|
{
|
|
using (ProcessHandle phandle = new ProcessHandle(_pid, Program.MinProcessQueryRights))
|
|
{
|
|
phandle.Terminate();
|
|
}
|
|
}
|
|
|
|
private void TT1()
|
|
{
|
|
System.Diagnostics.Process p = System.Diagnostics.Process.GetProcessById(_pid);
|
|
|
|
foreach (System.Diagnostics.ProcessThread t in p.Threads)
|
|
{
|
|
using (ThreadHandle thandle = new ThreadHandle(t.Id, ThreadAccess.Terminate))
|
|
{
|
|
// don't use KPH
|
|
Win32.TerminateThread(thandle, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void TT2()
|
|
{
|
|
Context context;
|
|
IntPtr exitProcess = Win32.GetProcAddress(Win32.GetModuleHandle("kernel32.dll"), "ExitProcess");
|
|
|
|
System.Diagnostics.Process p = System.Diagnostics.Process.GetProcessById(_pid);
|
|
|
|
foreach (System.Diagnostics.ProcessThread t in p.Threads)
|
|
{
|
|
using (ThreadHandle thandle = new ThreadHandle(t.Id, ThreadAccess.GetContext | ThreadAccess.SetContext))
|
|
{
|
|
try
|
|
{
|
|
context = thandle.GetContext(ContextFlags.Control);
|
|
context.ContextFlags = ContextFlags.Control;
|
|
context.Eip = exitProcess.ToInt32();
|
|
thandle.SetContext(context);
|
|
}
|
|
catch
|
|
{ }
|
|
}
|
|
}
|
|
}
|
|
|
|
private void TT3()
|
|
{
|
|
System.Diagnostics.Process p = System.Diagnostics.Process.GetProcessById(_pid);
|
|
|
|
foreach (System.Diagnostics.ProcessThread t in p.Threads)
|
|
{
|
|
using (ThreadHandle thandle = new ThreadHandle(t.Id, ThreadAccess.Terminate))
|
|
{
|
|
thandle.Terminate();
|
|
}
|
|
}
|
|
}
|
|
|
|
private void buttonRun_Click(object sender, EventArgs e)
|
|
{
|
|
if (MessageBox.Show("Are you sure you want to run the tests?", "Process Hacker",
|
|
MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation) == DialogResult.No)
|
|
return;
|
|
|
|
foreach (string test in _tests)
|
|
{
|
|
if (this.RunTest(test))
|
|
return;
|
|
}
|
|
}
|
|
|
|
private void listTests_DoubleClick(object sender, EventArgs e)
|
|
{
|
|
if (MessageBox.Show("Are you sure you want to run the selected test?", "Process Hacker",
|
|
MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation) == DialogResult.No)
|
|
return;
|
|
|
|
this.RunTest(listTests.SelectedItems[0].Name);
|
|
}
|
|
}
|
|
}
|