Mafia Coderz
Gusto mo bang maexperience ang isang napaka LUPIT na hideout ng mga cheaters and buggers? Dito mo lang yan matatagpuan sa IntensityPros! Smile Gusto mo din bang maka acquire ng mga gusto mo in cyber for FREE? Register ka lang! Kaya ano pang hinihintay mo? Join us Now!
Mafia Coderz
Gusto mo bang maexperience ang isang napaka LUPIT na hideout ng mga cheaters and buggers? Dito mo lang yan matatagpuan sa IntensityPros! Smile Gusto mo din bang maka acquire ng mga gusto mo in cyber for FREE? Register ka lang! Kaya ano pang hinihintay mo? Join us Now!
Mafia Coderz
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Mafia Coderz

Where gaming don't need skills.
 
HomeSearchLatest imagesRegisterLog in
DMCA.com
Log in
Username:
Password:
Log in automatically: 
:: I forgot my password
Who is online?
In total there is 1 user online :: 0 Registered, 0 Hidden and 1 Guest

None

Most users ever online was 12 on Sat Aug 17, 2013 1:09 pm
Latest topics
» PHO SF DFI PUBLIC HACK 1.20
HOW TO MAKE SIMPLE LOADER EmptyThu Oct 31, 2013 4:08 pm by banaykazuki01

» MafiaCoderz Cf Hack
HOW TO MAKE SIMPLE LOADER EmptyThu Sep 05, 2013 4:25 pm by Heneral2010

»  TOPIC: [MOD]POP CORN MOD (READ 4830 TIMES)
HOW TO MAKE SIMPLE LOADER EmptyThu Sep 05, 2013 8:07 am by Heneral2010

» Read Before Applying!
HOW TO MAKE SIMPLE LOADER EmptySun Sep 01, 2013 10:12 am by j@cKaZzz 143

» Coding Tutorials
HOW TO MAKE SIMPLE LOADER EmptySun Sep 01, 2013 10:08 am by j@cKaZzz 143

» READ BEFORE YOU POST
HOW TO MAKE SIMPLE LOADER EmptySun Sep 01, 2013 10:08 am by j@cKaZzz 143

» [MOD]DFI SF MOD, KILLMARK, SOUND ETC (READ 5623 TIMES)
HOW TO MAKE SIMPLE LOADER EmptyMon Aug 26, 2013 11:31 am by j@cKaZzz 143

»  LNL LOADER WALLHACK LOADER! V7
HOW TO MAKE SIMPLE LOADER EmptyMon Aug 26, 2013 11:28 am by j@cKaZzz 143

» OneHitCf By:TheMvT
HOW TO MAKE SIMPLE LOADER EmptyMon Aug 26, 2013 11:28 am by j@cKaZzz 143


 

 HOW TO MAKE SIMPLE LOADER

Go down 
AuthorMessage
TheMvT
Administrators
Administrators
TheMvT


Posts : 56
Join date : 16/08/2013
Age : 26
Location : MafiaCoderz

HOW TO MAKE SIMPLE LOADER Empty
PostSubject: HOW TO MAKE SIMPLE LOADER   HOW TO MAKE SIMPLE LOADER EmptyFri Aug 16, 2013 1:27 pm

Requirements :
Visual Basic 2008 / 2010 (.NET)

1. Create new project
2. Create the following things :

Progressbar1
Button1
Timer1

3. Above "Public Class Form1"

Code:
Imports System.Net


4. Below "Public Class Form1"

Code:
Public WithEvents lechshawn As WebClient
    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
        Timer1.Stop()
        Dim TargetProcess As Process() = Process.GetProcessesByName("PROCESS NAME HERE!")
        TargetProcessHandle = OpenProcess(PROCESS_CREATE_THREAD Or PROCESS_VM_OPERATION Or PROCESS_VM_WRITE, False, TargetProcess(0).Id)
        pszLibFileRemote = "C:\NAMEOFDLL.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.Show()
    End Sub


6. Button1 Code :

Code:
lechshawn = New WebClient
        lechshawn.DownloadFileAsync(New Uri("LINK OF THE DOWNLOAD HERE!"), "C:\NAMEOFDLL.dll")
        Button1.Enabled = False


7. Timer1 Code :

Code:
If IO.File.Exists("C:\NAMEOFDLL.dll") Then
            Dim TargetProcess As Process() = Process.GetProcessesByName("PROCESS NAME HERE")
            If TargetProcess.Length = 0 Then
            Else
                Timer1.Stop()
                Call Inject()
                End
            End If
        End If
End Sub
Private Sub lechshawn_DownloadFileCompleted(ByVal sender As Object, ByVal e As System.ComponentModel.AsyncCompletedEventArgs) Handles lechshawn.DownloadFileCompleted
        Timer1.Interval = 50
        Timer1.Start()
        Timer1.Enabled = True
        Button1.Text = "Game Start !"
End Sub
Private Sub lechshawn_DownloadProgressChanged(ByVal sender As Object, ByVal e As System.Net.DownloadProgressChangedEventArgs) Handles lechshawn.DownloadProgressChanged
        ProgressBar1.Value = e.ProgressPercentage


Credits:TheMvT & MafiaCoderz

Intindiin Ng Mabuti At Pasensya na hindi magawang rekta select all Smile:
Back to top Go down
 
HOW TO MAKE SIMPLE LOADER
Back to top 
Page 1 of 1
 Similar topics
-
»  LNL LOADER WALLHACK LOADER! V7
» How to make DLL Injector
»  [TUTORIAL] HOW TO MAKE MAGNIFIER
» PC Tricks: Make your Computer Talk
» [Tutorial] How to make Quick Search Engine

Permissions in this forum:You cannot reply to topics in this forum
Mafia Coderz :: Programming Zone :: Microsoft .NET Framework & Visual Basic-
Jump to: