Page 1 of 6 123 ... LastLast
Results 1 to 15 of 79
  1. #1
    Neechan''s Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    HI !
    Posts
    5,722
    Reputation
    122
    Thanks
    1,318

    Injector [Guide]

    Hey Guys I had bored and made this Thread.
    I will show you how to organize a better Injector.
    Its a Guide for Newbs ! Dont Flame or Rage !!

    Lets Start !!
    _______________________________________________
    Content:
    1) Organize a Injector
    2) Examples
    3) Form
    4) Source Code
    5) Release your Injector


    1) Organize a Injector
    • First you need a name for the Injector.
    You can use ur Account name on MPGH.
    Examples; My Accountname is: Neechan. Injectorname: NeeInjector.
    Or one that fits the Injector, your Injector is colorful: RainBowInjector.
    • Ok now Add:

    Rename:
    Button1: Browse... [Or Add]
    Button2: Remove
    Button3: Clear List
    Button4: Inject
    Button5(Optional): Credits
    Label1: Idle
    Textbox1: crossfire [or empty]
    Listbox1: Dlls
    Checkbox1: Close after Inject
    Radiobutton1: Automatic Inject
    Radiobutton2: Manual Inject

    2) Examples
    Examples 1: This is all in one. [Small]


    Examples 2: This is with TabControl


    How to Rename the Tabs?

    And and and ..
    Test your Creative

    3) Form
    • Put a Icon, example a crossfire Icon:
    C:\Program Files\Z8Games\CrossFire
    You can find the CrossFire Icon !

    How to put a Icon?


    •Put a Background, what do you like.
    But it must fit.
    • My Option:


    4) Source Code
    Public Class Form1 (Come under Public Class Form1!!!!!)
    Code:
        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()
            
            Timer1.Stop()
            Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
            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
    Form Code
    Code:
            timer1.interval = 50
            timer1.start()
    Timer Code
    Code:
            If IO.File.Exists(OpenFileDialog1.FileName) Then
                Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
                If TargetProcess.Length = 0 Then
    
                    Me.Label1.Text = ("Waiting for " + TextBox1.Text + ".exe...")
                Else
                    Timer1.Stop()
                    Me.Label1.Text = "Successfully Injected!"
                    Call Inject()
                    If CheckBox1.Checked = True Then
                        Me.Close()
                    Else
                    End If
                End If
            Else
            End If
    Remove-Button
    Code:
            For i As Integer = (Dlls.SelectedItems.Count - 1) To 0 Step -1
                Dlls.Items.Remove(Dlls.SelectedItems(i))
            Next
    Clear List-Button
    Code:
    Dlls.Items.Clear()
    Browse-Button
    Code:
            OpenFileDialog1.Filter = "DLL (*.dll) |*.dll|(*.*) |*.*"
            OpenFileDialog1.ShowDialog()
            Dim FileName As String
            FileName = OpenFileDialog1.FileName.Substring(OpenFileDialog1.FileName.LastIndexOf("\"))
            Dim DllFileName As String = FileName.Replace("\", "")
            Me.Dlls.Items.Add(DllFileName)
    Inject Button
    Code:
            If IO.File.Exists(OpenFileDialog1.FileName) Then
                Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
                If TargetProcess.Length = 0 Then
    
                    Me.Label1.Text = ("Waiting for " + TextBox1.Text + ".exe...")
                Else
                    Timer1.Stop()
                    Me.Label1.Text = "Successfully Injected!"
                    Call Inject()
                    If CheckBox1.Checked = True Then
                        Me.Close()
                    Else
                    End If
                End If
            Else
            End If
    Automatic-Code
    Code:
            Button4.Enabled = False
            Timer1.Enabled = True
    Manual-Code
    Code:
            Button4.Enabled = True
            Timer1.Enabled = False
    Full-Code:
    Code:
    Public Class Form1
        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()
            
            Timer1.Stop()
            Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
            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
    
    
    
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            timer1.interval = 50
            timer1.start()
    
    
    
        End Sub
    
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            If IO.File.Exists(OpenFileDialog1.FileName) Then
                Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
                If TargetProcess.Length = 0 Then
    
                    Me.Label1.Text = ("Waiting for " + TextBox1.Text + ".exe...")
                Else
                    Timer1.Stop()
                    Me.Label1.Text = "Successfully Injected!"
                    Call Inject()
                    If CheckBox1.Checked = True Then
                        Me.Close()
                    Else
                    End If
                End If
            Else
            End If
    
        End Sub
    
    
        Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
            For i As Integer = (Dlls.SelectedItems.Count - 1) To 0 Step -1
                Dlls.Items.Remove(Dlls.SelectedItems(i))
            Next
    
        End Sub
        Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            Dlls.Items.Clear()
    
        End Sub
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            OpenFileDialog1.Filter = "DLL (*.dll) |*.dll|(*.*) |*.*"
            OpenFileDialog1.ShowDialog()
            Dim FileName As String
            FileName = OpenFileDialog1.FileName.Substring(OpenFileDialog1.FileName.LastIndexOf("\"))
            Dim DllFileName As String = FileName.Replace("\", "")
            Me.Dlls.Items.Add(DllFileName)
    
        End Sub
        
    Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
            If IO.File.Exists(OpenFileDialog1.FileName) Then
                Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
                If TargetProcess.Length = 0 Then
    
                    Me.Label1.Text = ("Waiting for " + TextBox1.Text + ".exe...")
                Else
                    Timer1.Stop()
                    Me.Label1.Text = "Successfully Injected!"
                    Call Inject()
                    If CheckBox1.Checked = True Then
                        Me.Close()
                    Else
                    End If
                End If
            Else
            End If
        End Sub
    
        Private Sub RadioButton1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton1.CheckedChanged
            Button4.Enabled = False
            Timer1.Enabled = True
        End Sub
    
        Private Sub RadioButton2_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton2.CheckedChanged
            Button4.Enabled = True
            Timer1.Enabled = False
    Credits-Button
    Code:
    Msgbox("Made by Neechan")
    YOU CAN Add 1 LinkLabel1 for CREDITS
    Examples: Neechan
    Doppelclick on the Linklabel and Put the code:

    Code:
    Process.Start ("https://www.mpgh.net/forum/members/637601-neechan-.html")
    If you get errors telling modest

    5) Release your Injector.
    • If u want to Release your Injector , post it here:
    CrossFire Spammers, Injectors and Multi Tools - MPGH - MultiPlayer Game Hacking
    • But first u need:
    2 Virusscan
    VirusTotal - Free Online Virus, Malware and URL Scanner
    Jotti's malware scan
    Online Virus Scan
    Multi-Engine Antivirus Scanner - Services - NoVirusThanks.org

    1 Pictures of the Injector
    TinyPic - Free Image Hosting, Photo Sharing & Video Hosting
    ImageShack® - Online Photo and Video Hosting
    etc ...

    And dont forget the Attachment:
    Download: WinRAR download and support: Predownload
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    End of the Guide !!
    Enjoy
    Last edited by Neechan'; 06-18-2011 at 09:54 AM.

  2. The Following 16 Users Say Thank You to Neechan' For This Useful Post:

    aek1994 (07-06-2011),AnimeKick (08-25-2011),cad533 (06-23-2011),CheatCreatorzz (06-19-2011),dark4ever1 (06-27-2011),DarkKnighy (06-23-2011),dFuZe Gravity (08-04-2011),flachkissen (08-05-2011),grannycrazy (08-10-2011),lylee (07-25-2011),Njowils (07-08-2011),Rage. (07-21-2011),super.viva (07-05-2011),tonton619 (06-19-2011),[M0DD3R]Danny (06-23-2011),[NIG]➊➌➌➐[GA] (07-19-2011)

  3. #2
    HaxPro's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Latvia
    Posts
    2,834
    Reputation
    98
    Thanks
    1,148
    Good job.
    ftw i dont need this :/
    i already know...


    my net lagg like hell :/
    Last edited by HaxPro; 06-18-2011 at 09:47 AM.

  4. #3
    Neechan''s Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    HI !
    Posts
    5,722
    Reputation
    122
    Thanks
    1,318
    Quote Originally Posted by HaxPro View Post
    Good job.
    ftw i dont need this :/
    i already know...


    Good job.
    ftw i dont need this :/
    i already know...
    I said its for Newbs

  5. The Following User Says Thank You to Neechan' For This Useful Post:

    AnimeKick (08-25-2011)

  6. #4
    Dodo-CRO's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Croatia
    Posts
    476
    Reputation
    12
    Thanks
    191
    My Mood
    Sick
    Good tutorial, but I think that we already have like 3-4 tutorials about Injectors..
    Anyway, good job!

  7. #5
    HaxPro's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Latvia
    Posts
    2,834
    Reputation
    98
    Thanks
    1,148
    Quote Originally Posted by Neechan' View Post
    I said its for Newbs

    actual i better copy and paste Full code :/
    its annoying to click on buttons and paste code , but for Newbs its good they may learn something maybe.

  8. #6
    Neechan''s Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    HI !
    Posts
    5,722
    Reputation
    122
    Thanks
    1,318
    Quote Originally Posted by Dodo-CRO View Post
    Good tutorial, but I think that we already have like 3-4 tutorials about Injectors..
    Anyway, good job!
    Thats my way how to a Injector

    Quote Originally Posted by HaxPro View Post



    actual i better copy and paste Full code :/
    its annoying to click on buttons and paste code , but for Newbs its good they may learn something maybe.
    Right its better.
    But you dont now which is which.
    Examples: You click on "Browse" but its Credits.
    @HaxPro
    Last edited by Neechan'; 06-18-2011 at 09:52 AM.

  9. The Following 2 Users Say Thank You to Neechan' For This Useful Post:

    AnimeKick (08-25-2011),smok3w3ed (06-26-2011)

  10. #7
    HaxPro's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Latvia
    Posts
    2,834
    Reputation
    98
    Thanks
    1,148
    But actual u know who was first who shared the Injector code ?
    i know u didnt make these codes.

    We all are leechers
    Last edited by HaxPro; 06-18-2011 at 09:55 AM.

  11. #8
    Neechan''s Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    HI !
    Posts
    5,722
    Reputation
    122
    Thanks
    1,318
    Quote Originally Posted by HaxPro View Post
    But actual u know who was first who shared the Injector code ?
    i know u didnt make these codes.
    Injector code is injector Code...

  12. The Following User Says Thank You to Neechan' For This Useful Post:

    AnimeKick (08-25-2011)

  13. #9
    Snipermon's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Alexandria, Egypt, Egypt
    Posts
    5,785
    Reputation
    73
    Thanks
    748
    My Mood
    Yeehaw
    Good job on the tut

  14. #10
    Jigsaw's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Moon
    Posts
    23,219
    Reputation
    852
    Thanks
    2,089
    nice guide!
    DEHUMANIZE YOURSELF
    AND FACE TO BLOODSHED

  15. The Following User Says Thank You to Jigsaw For This Useful Post:

    AnimeKick (08-25-2011)

  16. #11
    abdoabdo123's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Egypt
    Posts
    725
    Reputation
    11
    Thanks
    127
    My Mood
    Cool
    nice guide for newbies that will help them but also there is another tut on the tut section and it is sticky

    how to make a professional injector i dont use anything any injector code from here i got mine from the VB book
    Feel Free To PM or VM
    Add Me On Skype:
    Abd-AlRahman V

    I Play:
    1-Call of Duty MW3
    2-Minecraft
    3-Conquer Online

  17. #12
    ¥øµñg&Ðång£r's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    1,168
    Reputation
    4
    Thanks
    486
    My Mood
    Flirty
    Very good mate
    req sticky
    @Haze
    @Thundercunt
    @xXModz
    @Coke
    @Shane
    @Justin Bieber

  18. #13
    HaxPro's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Latvia
    Posts
    2,834
    Reputation
    98
    Thanks
    1,148
    Quote Originally Posted by abdoabdo123 View Post
    nice guide for newbies that will help them but also there is another tut on the tut section and it is sticky

    how to make a professional injector i dont use anything any injector code from here i got mine from the VB book
    This is much better bro.
    i dont think people want watch an Low Quality Videomake

  19. #14
    Coke's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Location
    You would like to know wouldn't you.
    Posts
    4,665
    Reputation
    885
    Thanks
    1,249
    My Mood
    Daring
    Very Nice.
    /moved to Multitool section and stickied.

  20. #15
    Takari's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Cross Fire Section
    Posts
    11,889
    Reputation
    574
    Thanks
    1,966
    My Mood
    Cool
    Should I continue making tutorials?
    [IMG]https://i1114.photobucke*****m/albums/k538/ImminentJM/takari.png[/IMG]




     
    Goal:
    10,000 Posts - 10/13/2011
    Become Minion - Not Done
    Become Donator - 07/29/2011
    1000 Thanks - Done - 07/25/2011
    2000 Thanks - Not Done
    Thanks Archangel for my 1,000 Thanks.
    Thanks Keroaplt for my Signature.

Page 1 of 6 123 ... LastLast