Use a version of Visual Studio that can clone the Git repository and add the following modifications to the project.
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 |
using System; using System.Diagnostics; using System.IO; using System.Reflection; using System.Runtime.Remoting; using EasyHook; using PacketLoggerHook; namespace PacketLogger { internal class Program { public static void Main(string[] args) { if (args.Length != 1) { Console.Error.WriteLine("Usage: PacketLogger.exe <process_name>"); //return; } string channelName = null; RemoteHooking.IpcCreateServer<ServerInterface>(ref channelName, WellKnownObjectMode.Singleton); var injectionLibrary = Path.Combine( Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) ?? throw new InvalidOperationException(), "PacketLoggerHook.dll"); Console.WriteLine("Hooking"); injectionLibrary = @"C:\Users\UserName\Source\Repos\PacketLogger\PacketLoggerHook\bin\Debug\PacketLoggerHook.dll"; foreach (var process in Process.GetProcesses()) { if (process.ProcessName == args[0]) { Console.WriteLine("Found a process: {0}", process.ProcessName); RemoteHooking.Inject( process.Id, injectionLibrary, injectionLibrary, channelName ); break; } } Console.WriteLine("Press any key to exit"); Console.ReadKey(); } } } |
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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 |
using System; using System.Runtime.InteropServices; using System.Threading; using EasyHook; namespace PacketLoggerHook { public class InjectionEntryPoint : IEntryPoint { private readonly ServerInterface _server; private readonly string _channelName; private LocalHook _wsaSendHook; private LocalHook _wsaRecvHook; private LocalHook _SendHook; private LocalHook _RecvHook; public InjectionEntryPoint(RemoteHooking.IContext context, string channelName) { _server = RemoteHooking.IpcConnectClient<ServerInterface>(channelName); _channelName = channelName; } public void Run(RemoteHooking.IContext context, string channelName) { _server.Log("Running"); _server.IsInstalled(RemoteHooking.GetCurrentProcessId()); _server.Log("Installed"); _wsaSendHook = LocalHook.Create( LocalHook.GetProcAddress("Ws2_32.dll", "WSASend"), new WSASend_Delegate(WSASend_Hook), this ); _wsaRecvHook = LocalHook.Create( LocalHook.GetProcAddress("Ws2_32.dll", "WSARecv"), new WSARecv_Delegate(WSARecv_Hook), this ); _wsaSendHook.ThreadACL.SetExclusiveACL(new[] {0}); _wsaRecvHook.ThreadACL.SetExclusiveACL(new[] {0}); _SendHook = LocalHook.Create( LocalHook.GetProcAddress("Ws2_32.dll", "send"), new Send_Delegate(Send_Hook), this ); _SendHook.ThreadACL.SetExclusiveACL(new[] { 0 }); _RecvHook = LocalHook.Create( LocalHook.GetProcAddress("Ws2_32.dll", "recv"), new Recv_Delegate(Recv_Hook), this ); _RecvHook.ThreadACL.SetExclusiveACL(new[] { 0 }); _server.Log("Hook WSASend/WSARecv/Send/Recv installed"); RemoteHooking.WakeUpProcess(); while (true) { Thread.Sleep(500); } } public void Stop() { _wsaSendHook.Dispose(); _wsaRecvHook.Dispose(); _SendHook.Dispose(); _RecvHook.Dispose(); LocalHook.Release(); } #region WSASend Hook [UnmanagedFunctionPointer(CallingConvention.StdCall, CharSet = CharSet.Unicode, SetLastError = true)] delegate int WSASend_Delegate( IntPtr s, IntPtr lpBuffers, uint dwBufferCount, IntPtr lpNumberOfBytesSent, uint dwFlags, uint lpOverlapped, uint lpCompletionRoutine ); [DllImport("Ws2_32.dll", SetLastError = true, CharSet = CharSet.Auto)] static extern int WSASend( IntPtr s, IntPtr lpBuffers, uint dwBufferCount, IntPtr lpNumberOfBytesSent, uint dwFlags, uint lpOverlapped, uint lpCompletionRoutine ); int WSASend_Hook( IntPtr s, IntPtr lpBuffers, uint dwBufferCount, IntPtr lpNumberOfBytesSent, uint dwFlags, uint lpOverlapped, uint lpCompletionRoutine ) { var result = WSASend(s, lpBuffers, dwBufferCount, lpNumberOfBytesSent, dwFlags, lpOverlapped, lpCompletionRoutine); var respSize = Marshal.ReadInt32(lpNumberOfBytesSent); if (respSize > 0) { var data = new byte[respSize]; Marshal.Copy(Marshal.ReadIntPtr(lpBuffers, 4), data, 0, respSize); _server.Log("WSASend", data); } return result; } #endregion #region WSARecv Hook [UnmanagedFunctionPointer(CallingConvention.StdCall, CharSet = CharSet.Unicode, SetLastError = true)] delegate int WSARecv_Delegate( IntPtr s, IntPtr lpBuffers, uint dwBufferCount, IntPtr lpNumberOfBytesRecvd, uint lpFlags, uint lpOverlapped, uint lpCompletionRoutine ); [DllImport("Ws2_32.dll", SetLastError = true, CharSet = CharSet.Auto)] static extern int WSARecv( IntPtr s, IntPtr lpBuffers, uint dwBufferCount, IntPtr lpNumberOfBytesRecvd, uint lpFlags, uint lpOverlapped, uint lpCompletionRoutine ); int WSARecv_Hook( IntPtr s, IntPtr lpBuffers, uint dwBufferCount, IntPtr lpNumberOfBytesRecvd, uint lpFlags, uint lpOverlapped, uint lpCompletionRoutine) { var result = WSARecv(s, lpBuffers, dwBufferCount, lpNumberOfBytesRecvd, lpFlags, lpOverlapped, lpCompletionRoutine); var respSize = Marshal.ReadInt32(lpNumberOfBytesRecvd); if (respSize > 0) { var data = new byte[respSize]; Marshal.Copy(Marshal.ReadIntPtr(lpBuffers, 4), data, 0, respSize); _server.Log("WSARecv", data); } return result; } #endregion #region Recv Hook [UnmanagedFunctionPointer(CallingConvention.StdCall, CharSet = CharSet.Unicode, SetLastError = true)] delegate int Recv_Delegate( uint s, IntPtr buf, int len, int flags ); [DllImportAttribute("Ws2_32.dll", CallingConvention= CallingConvention.StdCall, SetLastError = true, CharSet = CharSet.Auto)] static extern int recv( uint s, IntPtr buf, int len, int flags ); int Recv_Hook( uint s, IntPtr buf, int len, int flags) { //_server.Log("recv", System.Text.ASCIIEncoding.ASCII.GetBytes("Got receive request")); int result = recv(s, buf, len, flags); //_server.Log("recv", System.Text.ASCIIEncoding.ASCII.GetBytes("Got receive done: " + result)); var respSize = result; //Marshal.ReadInt32(result); if (respSize > 0) { _server.Log("Recv", System.Text.ASCIIEncoding.ASCII.GetBytes(Marshal.PtrToStringAnsi(buf))); //var data = new byte[respSize]; //Marshal.Copy(Marshal.ReadIntPtr(buf, 4), data, 0, respSize); //_server.Log("Recv", System.Text.ASCIIEncoding.ASCII.GetBytes(buf)); } return result; } #endregion #region Send Hook [UnmanagedFunctionPointer(CallingConvention.StdCall, CharSet = CharSet.Unicode, SetLastError = true)] delegate int Send_Delegate( IntPtr s, //[MarshalAsAttribute(UnmanagedType.LPWStr)] string buf, IntPtr buf, int len, int flags ); [DllImportAttribute("Ws2_32.dll", CallingConvention = CallingConvention.StdCall, SetLastError = true, CharSet = CharSet.Unicode)] static extern int send( IntPtr s, //[MarshalAsAttribute(UnmanagedType.LPWStr)] string buf, IntPtr buf, int len, int flags ); int Send_Hook( IntPtr s, //[MarshalAsAttribute(UnmanagedType.LPWStr)] string buf, IntPtr buf, int len, int flags ) { //_server.Log("send", System.Text.ASCIIEncoding.ASCII.GetBytes("Got Send request " + buf)); //_server.Log("send2", System.Text.ASCIIEncoding.ASCII.GetBytes(Marshal.PtrToStringAnsi(buf))); var result = send(s, buf, len, flags); //_server.Log("send", System.Text.ASCIIEncoding.Unicode.GetBytes("Got Send request " + buf)); //_server.Log("send", System.Text.ASCIIEncoding.ASCII.GetBytes("Got Send done: " + result)); var respSize = result; //Marshal.ReadInt32(lpNumberOfBytesSent); if (respSize > 0) { var data = new byte[respSize]; //Marshal.Copy(Marshal.ReadIntPtr(buf, 4), data, 0, respSize); Marshal.Copy(buf, data, 0, respSize); _server.Log("send", data); } return result; } #endregion } } |