Hello guys, I hope I can get real help from you
I am creating my first hack for wolfteam and have an error while trying to access the process modules with this code
The error message says "Win32exception was unhandled - access is denied "
I am creating my first hack for wolfteam and have an error while trying to access the process modules with this code
Code:
Dim p As Process = Process.GetProcessesByName("Wolfteam.bin")(0)
For Each moz As System.Diagnostics.ProcessModule In p.Modules
If moz.FileName.IndexOf("obj") <> -1 Then
Label1.Text = moz.BaseAddress.ToString
End If
Next