-
Notifications
You must be signed in to change notification settings - Fork 9
/
ProcessManagement.cs
85 lines (68 loc) · 1.83 KB
/
ProcessManagement.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Runtime.InteropServices;
namespace Com.Xenthrax.DllInjector
{
public partial class DllInjector : IDisposable
{
public void ResumeProcess()
{
this.ThrowIfDisposed();
this.ThrowIfNoProcess();
this.Process.Refresh();
foreach (ProcessThread Thread in this.Process.Threads)
this.ResumeThread(Thread);
}
public void SuspendProcess()
{
this.ThrowIfDisposed();
this.ThrowIfNoProcess();
this.Process.Refresh();
foreach (ProcessThread Thread in this.Process.Threads)
this.SuspendThread(Thread);
}
public void ResumeThread(ProcessThread Thread)
{
this.ThrowIfDisposed();
IntPtr hThread = Win32.OpenThread(Win32.ThreadAccess.THREAD_SUSPEND_RESUME, false, (uint)Thread.Id);
if (hThread == IntPtr.Zero)
throw new Win32Exception();
try
{
if ((int)Win32.ResumeThread(hThread) == -1)
throw new Win32Exception();
}
finally
{
if (!Win32.CloseHandle(hThread))
throw new Win32Exception();
}
}
public void SuspendThread(ProcessThread Thread)
{
this.ThrowIfDisposed();
IntPtr hThread = Win32.OpenThread(Win32.ThreadAccess.THREAD_SUSPEND_RESUME, false, (uint)Thread.Id);
if (hThread == IntPtr.Zero)
throw new Win32Exception();
try
{
if ((this.IsWow64Process && (int)Win32.Wow64SuspendThread(hThread) == -1)
|| (!this.IsWow64Process && (int)Win32.SuspendThread(hThread) == -1))
throw new Win32Exception();
}
finally
{
if (!Win32.CloseHandle(hThread))
throw new Win32Exception();
}
}
public void KillProcess()
{
this.ThrowIfDisposed();
this.Dispose();
if (this._Process != null && !this._Process.HasExited)
this._Process.Kill();
}
}
}