From 9e549f3ac109a6362a6acdeefdd64d6dbc7bb02f Mon Sep 17 00:00:00 2001 From: Alex Davies Date: Sun, 1 Oct 2017 09:45:53 +0100 Subject: [PATCH] Update process-dll-injection.cs --- process-dll-injection.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/process-dll-injection.cs b/process-dll-injection.cs index 6ff17e9..c2658f8 100644 --- a/process-dll-injection.cs +++ b/process-dll-injection.cs @@ -1,7 +1,14 @@ // This code was originally published on codingvision. -//http://www.codingvision.net/miscellaneous/c-inject-a-dll-into-a-process-w-createremotethread +// http://www.codingvision.net/miscellaneous/c-inject-a-dll-into-a-process-w-createremotethread // // Minor tweaks and commenting by @pwndizzle +// +// To run: +// 1. Download or compile a target dll (see calc reference in readme) and place in c:\ +// 2. Compile code - C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe process-dll-injection.cs +// 3. Start notepad +// 4. Execute process-dll-injection.exe to see calc pop + using System; using System.Diagnostics;