Page 1 of 4 123 ... LastLast
Results 1 to 15 of 47
  1. #1
    BoofiHack's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    New Delphi Coder
    Posts
    250
    Reputation
    10
    Thanks
    584

    How to make a advanced dlls injector

    Helle totay i have make a tutorial for you

    How to make your Advanced injector
    code :
    Code:
    Public Class Form1
    
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            TextBox1.Clear()
        End Sub
    
    
        Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            If IO.File.Exists(OpenFileDialog1.FileName) Then
    
            End If
            Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
            If TargetProcess.Length = 0 Then
    
                Label3.Text = ("Waiting For : " + TextBox1.Text + ".exe" + "....")
            Else
                Timer1.Stop()
                Label3.ForeColor = Color.Green
                Label3.Text = "Sucess to inject!"
                Call Inject()
                If CheckBox1.Checked = True Then
                    Me.Close()
                Else
                End If
            End If
        End Sub
    
        Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
            Close()
        End Sub
    
    
        Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
            OpenFileDialog1.Filter = "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 Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
            For i As Integer = (Dlls.SelectedItems.Count - 1) To 0 Step -1
                Dlls.Items.Remove(Dlls.SelectedItems(i))
            Next
        End Sub
        Private Sub Button6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button6.Click
            Dlls.Items.Clear()
        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
                    Label3.ForeColor = Color.Red
                    Label3.Text = ("Waiting For : " + TextBox1.Text + ".exe" + "....")
                Else
                    Timer1.Stop()
                    Label3.ForeColor = Color.Green
                    Label3.Text = "Sucess to inject!"
                    Call Inject()
                    If CheckBox1.Checked = True Then
                        Me.Close()
                    End If
    
                End If
            End If
        End Sub
        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 
            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 = 2
            Timer1.Start()
        End Sub
    
        Private Sub RadioButton1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton1.CheckedChanged
            Timer1.Start()
            CheckBox1.Checked = True
        End Sub
    
        Private Sub RadioButton2_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton2.CheckedChanged
            Timer1.Stop()
            CheckBox1.Checked = True
        End Sub
    End Class
    Crédit : Boofi Hack

  2. The Following 7 Users Say Thank You to BoofiHack For This Useful Post:

    DJ_Dreamer (12-06-2012),DWT8000 (03-18-2016),Rory (12-11-2012),Sky_____ (12-14-2012),Voltz_ (12-05-2012),yousefaliq (02-28-2013),[S]aeed (12-05-2012)

  3. #2
    sobasoba13's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    So Far Away
    Posts
    1,145
    Reputation
    23
    Thanks
    1,607
    My Mood
    Relaxed
    I Have another and easy way
    Crossfire Projects
    Made 21 Feature (Memory Hack)
    Respect List
    @ComboDance
    @mamo007
    @GaaD
    @Olwayy
    @Biesi
    @iSmexy
    @derh.acker
    @Brimir
    @steveroseik
    @Hero
    @Temperrr
    @Rullez
    PressIF I Helped

  4. The Following User Says Thank You to sobasoba13 For This Useful Post:

    shippo190 (11-27-2019)

  5. #3
    BoofiHack's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    New Delphi Coder
    Posts
    250
    Reputation
    10
    Thanks
    584
    Quote Originally Posted by sobasoba13 View Post
    I Have another and easy way

  6. #4
    Rory's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    IN MPGH
    Posts
    1,872
    Reputation
    10
    Thanks
    181
    My Mood
    Cold
    Thanks For Sharing :P

  7. #5
    CrosLife's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    1337
    Posts
    1,308
    Reputation
    20
    Thanks
    272
    My Mood
    Yeehaw
    Quote Originally Posted by sobasoba13 View Post
    I Have another and easy way
    post it pls !

  8. #6
    BoofiHack's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    New Delphi Coder
    Posts
    250
    Reputation
    10
    Thanks
    584
    Quote Originally Posted by sobasoba13 View Post
    I Have another and easy way
    Yes Thx to post it hihihi

  9. #7
    لا إله إلا الله محمد رسول الله
    MPGH Member
    [S]aeed's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Egypt
    Posts
    847
    Reputation
    233
    Thanks
    22,269
    My Mood
    Cynical
    hmm there is alot of injectors tut for how to make it, so easy to make
    nice one .
    thanks
    To Be Continued...


    نبينا كالسحاب .. ولا يضر السحاب نبح الكلاب


    ██████████████████████████
    ██████████████████████████
    ██████████████████████████


    لا إله إلا الله محمد رسول الله
    There is no god but Allah, Mohamed is the messenger of AllaH

  10. The Following User Says Thank You to [S]aeed For This Useful Post:

    Rullez (12-11-2012)

  11. #8
    BoofiHack's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    New Delphi Coder
    Posts
    250
    Reputation
    10
    Thanks
    584
    Quote Originally Posted by [S]aeed View Post
    hmm there is alot of injectors tut for how to make it, so easy to make
    nice one .
    thanks
    you welcome

  12. #9
    Voltz_'s Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    In [MPGH]
    Posts
    202
    Reputation
    10
    Thanks
    181
    My Mood
    Innocent
    @BoofiHack Juz put the buttons where u wanna put then paste double click the Form1 and paste the code? and done? Or the button is only tht much can use?
    /me Proud to be MPGH member!!!! /me
    Press thanks buton if i helped you.


    Leecher
    Choob
    Newbie
    Member
    Advanced Member
    Dual-Keyboard Member

  13. #10
    BoofiHack's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    New Delphi Coder
    Posts
    250
    Reputation
    10
    Thanks
    584
    Quote Originally Posted by Voltz_ View Post
    @BoofiHack Juz put the buttons where u wanna put then paste double click the Form1 and paste the code? and done? Or the button is only tht much can use?
    Is the full code you just need Place the buttom Label and all i do in video
    Just past the full code when you have finish

  14. #11
    Voltz_'s Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    In [MPGH]
    Posts
    202
    Reputation
    10
    Thanks
    181
    My Mood
    Innocent
    Quote Originally Posted by BoofiHack View Post
    Is the full code you just need Place the buttom Label and all i do in video
    Just past the full code when you have finish
    Okay... thnks ... but i must follow the exact mount of buttons i can put or i can put how much i want ... Example : U put 6 buttons ... But i wanna put 9 buttons .... so when done i juz put the code then it can work? or i need edit the code for the extra 3 buttons ??
    /me Proud to be MPGH member!!!! /me
    Press thanks buton if i helped you.


    Leecher
    Choob
    Newbie
    Member
    Advanced Member
    Dual-Keyboard Member

  15. #12
    BoofiHack's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    New Delphi Coder
    Posts
    250
    Reputation
    10
    Thanks
    584
    Quote Originally Posted by Voltz_ View Post
    Okay... thnks ... but i must follow the exact mount of buttons i can put or i can put how much i want ... Example : U put 6 buttons ... But i wanna put 9 buttons .... so when done i juz put the code then it can work? or i need edit the code for the extra 3 buttons ??
    you but all button and all after you dooble click on the form you delete all
    and you post the code

  16. #13
    Voltz_'s Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    In [MPGH]
    Posts
    202
    Reputation
    10
    Thanks
    181
    My Mood
    Innocent
    Quote Originally Posted by BoofiHack View Post
    you but all button and all after you dooble click on the form you delete all
    and you post the code
    Reply fast ... now how wanna put credits in the injector?
    /me Proud to be MPGH member!!!! /me
    Press thanks buton if i helped you.


    Leecher
    Choob
    Newbie
    Member
    Advanced Member
    Dual-Keyboard Member

  17. #14
    sobasoba13's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    So Far Away
    Posts
    1,145
    Reputation
    23
    Thanks
    1,607
    My Mood
    Relaxed
    Quote Originally Posted by BoofiHack View Post
    Yes Thx to post it hihihi
    @steveroseik post it before me he's using the same method

    ---------- Post added at 10:38 AM ---------- Previous post was at 10:36 AM ----------

    Quote Originally Posted by Voltz_ View Post
    Okay... thnks ... but i must follow the exact mount of buttons i can put or i can put how much i want ... Example : U put 6 buttons ... But i wanna put 9 buttons .... so when done i juz put the code then it can work? or i need edit the code for the extra 3 buttons ??

    You have to just put the command (in every button {CODE}) what should this button do
    Crossfire Projects
    Made 21 Feature (Memory Hack)
    Respect List
    @ComboDance
    @mamo007
    @GaaD
    @Olwayy
    @Biesi
    @iSmexy
    @derh.acker
    @Brimir
    @steveroseik
    @Hero
    @Temperrr
    @Rullez
    PressIF I Helped

  18. #15
    Voltz_'s Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    In [MPGH]
    Posts
    202
    Reputation
    10
    Thanks
    181
    My Mood
    Innocent
    Quote Originally Posted by sobasoba13 View Post
    @steveroseik post it before me he's using the same method

    ---------- Post added at 10:38 AM ---------- Previous post was at 10:36 AM ----------





    You have to just put the command (in every button {CODE}) what should this button do
    Bro i need ur help .. why when i press debug button at the end a error say ... "value cannot be null" Paramater name: objectType ''
    and the debug come out ... i test press browse button in the injector the browse box never come out help!!
    Last edited by Voltz_; 12-05-2012 at 08:53 AM.
    /me Proud to be MPGH member!!!! /me
    Press thanks buton if i helped you.


    Leecher
    Choob
    Newbie
    Member
    Advanced Member
    Dual-Keyboard Member

Page 1 of 4 123 ... LastLast

Similar Threads

  1. How to make a Advanced Injector
    By Crazy Turks in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 17
    Last Post: 05-04-2011, 06:48 AM
  2. [Help]Can someone teach me how to make a advanced CA Injector?
    By Henchman in forum Programming Tutorial Requests
    Replies: 3
    Last Post: 10-08-2010, 07:57 PM
  3. [TUT]How to make an Advanced Injector!
    By DeathHunter in forum Programming Tutorials
    Replies: 15
    Last Post: 09-18-2010, 08:37 PM
  4. [TUT]How to make an Advanced Injector!
    By DeathHunter in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 45
    Last Post: 09-09-2010, 08:30 PM
  5. How to make a Warrock .dll Injector
    By Lukas59 in forum Visual Basic Programming
    Replies: 11
    Last Post: 11-02-2009, 02:46 PM