- Yasaklandı
- #1
I'm the Boss
Ultra Üye
Merhaba arkadaşlar bi loader yapmak istiyosunuz
openfiledialog olsun istemyosunuz , listboxla filan uraşmayım diyosunuzya işte tam yerindesiniz...
Size bu konuda bikaç kod ve sadece bi butonla injectör yapcaz
İlkönce en üst şu kodları importluyoruz
Önce public class form1 in hemen altına şunları atıyoruz
Sonra bi tane Buton ekleyip şu kodu yazıyoruz
Call Loader()
Bu kadar arkadaşlar auto loaderımız tamamdır dll yide siz random ayarlayın bitti[/code]
Edit : Çok isteyenler için proje /Form1.vb) verildi hey yarrabim ya deli edersiniz adamı
Bir visual basic text dosyası olduğu için virüstotal koyma gereği duymadım
openfiledialog olsun istemyosunuz , listboxla filan uraşmayım diyosunuzya işte tam yerindesiniz...
Size bu konuda bikaç kod ve sadece bi butonla injectör yapcaz
İlkönce en üst şu kodları importluyoruz
Kod:
Imports Microsoft.VisualBasic
Imports Microsoft.VisualBasic.CompilerServices
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Diagnostics
Imports System.Drawing
Imports System.IO
Imports System.Runtime.CompilerServices
Imports System.Windows.Forms
Imports System.Environment
Önce public class form1 in hemen altına şunları atıyoruz
Kod:
Private TargetProcessHandle As Integer
Private pfnStartAddr As Integer
Private pszLibFileRemote As String
Private TargetBufferSize As Integer
Public Const PROCESS_VM_READ = &H10
Public Const TH32CS_SNAPPROCESS = &H2
Public Const MEM_COMMIT = 4096
Public Const PAGE_READWRITE = 4
Public Const PROCESS_CREATE_THREAD = (&H2)
Public Const PROCESS_VM_OPERATION = (&H8)
Public Const PROCESS_VM_WRITE = (&H20)
Dim DLLFileName As String
Public Declare Function ReadProcessMemory Lib "kernel32" (
ByVal hProcess As Integer,
ByVal lpBaseAddress As Integer,
ByVal lpBuffer As String,
ByVal nSize As Integer,
ByRef lpNumberOfBytesWritten As Integer) As Integer
Public Declare Function LoadLibrary Lib "kernel32" Alias "LoadLibraryA" (
ByVal lpLibFileName As String) As Integer
Public Declare Function VirtualAllocEx Lib "kernel32" (
ByVal hProcess As Integer,
ByVal lpAddress As Integer,
ByVal dwSize As Integer,
ByVal flAllocationType As Integer,
ByVal flProtect As Integer) As Integer
Public Declare Function WriteProcessMemory Lib "kernel32" (
ByVal hProcess As Integer,
ByVal lpBaseAddress As Integer,
ByVal lpBuffer As String,
ByVal nSize As Integer,
ByRef lpNumberOfBytesWritten As Integer) As Integer
Public Declare Function GetProcAddress Lib "kernel32" (
ByVal hModule As Integer, ByVal lpProcName As String) As Integer
Private Declare Function GetModuleHandle Lib "Kernel32" Alias "GetModuleHandleA" (
ByVal lpModuleName As String) As Integer
Public Declare Function CreateRemoteThread Lib "kernel32" (
ByVal hProcess As Integer,
ByVal lpThreadAttributes As Integer,
ByVal dwStackSize As Integer,
ByVal lpStartAddress As Integer,
ByVal lpParameter As Integer,
ByVal dwCreationFlags As Integer,
ByRef lpThreadId As Integer) As Integer
Public Declare Function OpenProcess Lib "kernel32" (
ByVal dwDesiredAccess As Integer,
ByVal bInheritHandle As Integer,
ByVal dwProcessId As Integer) As Integer
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (
ByVal lpClassName As String,
ByVal lpWindowName As String) As Integer
Private Declare Function CloseHandle Lib "kernel32" Alias "CloseHandleA" (
ByVal hObject As Integer) As Integer
Dim ExeName As String = IO.Path.GetFileNameWithoutExtension(Application.ExecutablePath)
Dim dllyol As string = "c:\heyk.dll" [COLOR=#cc3333]'Burası verceğimiz dll nin yolu onu siz random yaparsınız size kalmış[/COLOR]
Private Sub Loader()
On Error GoTo 1 ' If error occurs, app will close without any error messages
Timer1.Stop()
Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)[COLOR=#669933] 'wolftü.bin de yapabilirsiniz[/COLOR]
TargetProcessHandle = OpenProcess(PROCESS_CREATE_THREAD Or PROCESS_VM_OPERATION Or PROCESS_VM_WRITE, False, TargetProcess(0).Id)
pszLibFileRemote = dllyol
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.Show()
End sub
Call Loader()
Bu kadar arkadaşlar auto loaderımız tamamdır dll yide siz random ayarlayın bitti[/code]
Edit : Çok isteyenler için proje /Form1.vb) verildi hey yarrabim ya deli edersiniz adamı
Bir visual basic text dosyası olduğu için virüstotal koyma gereği duymadım
Bağlantıları görmek için lütfen
Giriş Yap
Son düzenleme: