- Yasaklandı
- #1
Hile kullanmak kolsuzluk değil akıllılıktır
Banlı Üye
hepinize merhabalar
ve evet bu arada ciddiyim loader yapmayı göstericem
ilk önce projeyi oluşturmadan önce githuba gidelim
orda yeni bir repostry oluşturalım
onun içine dll leri atalım (hile dll'leri)
şimdi onların indirme linkini almak için dll'lerin üstüne sağ tıklayıp bağlantıyı kopyalayalım
Visual Studio'ya gelelim ve projemizi açalım
örneğin csgo hilesi olacak oraya csgo hilesi inject et butonu koyalım
ama önce public class'ın hemen altına şu kodları yazalım
ve evet bu arada ciddiyim loader yapmayı göstericem
ilk önce projeyi oluşturmadan önce githuba gidelim
orda yeni bir repostry oluşturalım
onun içine dll leri atalım (hile dll'leri)
şimdi onların indirme linkini almak için dll'lerin üstüne sağ tıklayıp bağlantıyı kopyalayalım
Visual Studio'ya gelelim ve projemizi açalım
örneğin csgo hilesi olacak oraya csgo hilesi inject et butonu koyalım
ama önce public class'ın hemen altına şu kodları yazalım
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)
Private Sub Inject()
On Error GoTo 1 ' If error occurs, app will close without any error messages
Dim TargetProcess As Process() = Process.GetProcessesByName("csgo")
TargetProcessHandle = OpenProcess(PROCESS_CREATE_THREAD Or PROCESS_VM_OPERATION Or PROCESS_VM_WRITE, False, TargetProcess(0).Id)
pszLibFileRemote = OpenFileDialog1.FileName
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
şimdi şu csgo dll aç butonuna şu kodları yazalım
Kod:
dim wc as new WebClient
Dim csgo dll as string = "kopyaladığınız dll linki"
wc.Downloadfile(csgodll, "hackdll")
//aslında burası gerekli değil My.Computer.FileSystem.MoveFile(Application.StartupPath + "./", "C:\")
If IO.File.Exists(Application.StartupPath + "./csgo.dll") Then
End If
Dim TargetProcess As Process() = Process.GetProcessesByName("csgo")
If TargetProcess.Length = 0 Then
Else
Call Inject()
MsgBox("Injected")
End If
Catch ex As Exception
MsgBox("a error occured")
End Try
büyük ihtimallle kodda hatalar çıkacak eğer çıkarsa zaten kendiniz yapabilrsiniz ben size kapıyı açtım bunu geliştirmek fln sizde yani kodun mantığı ve kodun bir kısmı var bunu geliştireceksiniz o yüzden kodda 1 - 2 tane hata var
eğer hatalar çıkarsa benim injectorün source kodu mantık aynı zaten geliştirmek size kalmış. ( Eğer hata ediyorsam konuyu silmek yerine benimle konuşun)
Moderatörün son düzenlenenleri: