Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    hopefordope's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Herndon,VA
    Posts
    264
    Reputation
    9
    Thanks
    86
    My Mood
    Psychedelic

    Arrow TUT HOW TO MAKE A INJECTOR [REVISED]

    THIS HAS BEEN WROTE BY NEXTGEN1 who revised my edition
    but many people hasnt been able to access this so i am doing what he did but in a new post


    Original Credits to (Immortal- , Ugleh, nextgen1, d3y3q3, and hope)

    Note: On the areas that reference dll.something, Change dll to listbox1 in the code, or change listbox1 name to dll

    Start Up VB.net

    You will need numerous components placed on the form,

    I will briefly discuss each one, Hope says you need 4 buttons, Fact is
    you will need more, plus need to change some properties, So as I go through his tutorial, I will make slight changes and make it easier to follow
    You will Need Buttons (I think 6, But again I will have you add them as you need them)

    You will need a OpenDialog Component

    Properties - Set MultiSelect = True.

    You Will need a label

    You will need a ListBox

    Here is a picture of how I set mine up at this point (just for reference)

    [IMG]https://i111.photobucke*****m/albums/n121/golmor/min.jpg[/IMG]

    --- Create A New Windows Application
    --- Call It Dll Injection

    In Between

    Code:
    Private Class Form1
    End Class
    Add this Code
    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()
    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
    now generate the Form Load Event, You can do this by double clicking on a empty part in the form, or by going to View Code --> Then Clicking the pull down on the top left, select form1 events, then on the right click Load
    in there add this code
    Code:
    Button1.Text = "Browse"
    Label1.Text = "Waiting for Process Start..."
    Timer1.Interval = 50
    Timer1.Start()
    -- Add a Timer to the form.
    --- Double Click the Timer
    In between the timer1.tick event and end sub add the following
    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
       End Sub
    ---- Add a textbox to your form
    ---- Add a ListBox to your form
    ---- Add a button and change the Text to "Clear Selected"
    ---- Double Click the button to generate the Button_Click Event,
    Add this code
    Code:
    For i As Integer = (Dlls.SelectedItems.Count - 1) To 0 Step -1
                Dlls.Items.Remove(Dlls.SelectedItems(i))
            Next
    Add another button to the form and double click on it to generate the Button_Click Event
    in between the Button_Click and the End Sub
    --Add the following code
    Code:
    TextBox1.Clear()
    -- Now add yet another button to the form and change the name to "Clear List"
    -- Double Click the Button to generate the button_click event
    -- Add this code
    Code:
    ListBox1.Items.Clear()
    --now add a openfiledialog to your form
    --and add yet another button to your form and change the text to" Browse"
    --Double click the button to generate a Button_Click Event
    --and add the following code
    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)
    Now copy and paste this to your code, do not add it to a button event..... Which hope states
    Code:
    Private Function GetAsyncKeyState(ByVal vKey As Integer) As Short
    
            If GetAsyncKeyState(Keys.F12) Then
                If IO.File.Exists(OpenFileDialog1.FileName) Then
                    Dim TargetProcess As Process() = Process.GetProcessesByName(RadTextBox1.Text)
                    If TargetProcess.Length = 0 Then
    
                        Me.RadLabelElement1.Text = ("Waiting for " + RadTextBox1.Text + ".exe Injection(F12)...")
                    Else
                        Timer1.Stop()
                        Me.RadLabelElement1.Text = "Successfully Injected!"
                        Call Inject()
                        ' If CheckBox1.Checked = True Then
                        'Me.Close()
                        'Else
                        ' End If
                    End If
                Else
                End If
            End If
    
        End Function
    -add another button to your form , Double click it again to generate the event
    Change it's name to inject
    This code
    Code:
    If IO.File.Exists(OpenFileDialog1.FileName) Then
                    Dim TargetProcess As Process() = Process.GetProcessesByName(RadTextBox1.Text)
                    If TargetProcess.Length = 0 Then
    
                        Me.RadLabelElement1.Text = ("Waiting for " + RadTextBox1.Text + ".exe Injection(F12)...")
                    Else
                        Timer1.Stop()
                        Me.RadLabelElement1.Text = "Successfully Injected!"
                        Call Inject()
                        ' If CheckBox1.Checked = True Then
                        'Me.Close()
                        'Else
                        ' End If
                    End If
                Else
                End If
    --- Now add a checkbox change the text to "Close After Inject?"
    At this point Hope has you add Radio Buttons to choose between automatic and Manual
    That part is up to you, I am not going to touch on this topic,
    I have not fully tested everything, However using multi select , you should now be able to add multple Dlls to the list to inject.

    Press Thank You[IMG]https://i45.tinypic.com/2hg8w0n.jpghttps://img1.UploadScreensho*****m/images/main/2/3203234450.jpg[/IMG]










    My Releases
    Injector 3G
    Injector 2G
    Injector 1G
    Super Spammer
    CA Cleaner
    My Tutorials
    How to Make a real Injector(PerX)
    How to Make a Calculator(leeched)

  2. The Following 3 Users Say Thank You to hopefordope For This Useful Post:

    drwho2 (07-29-2010),reaper (07-14-2010),Xs239 (08-15-2010)

  3. #2
    thekm1994's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    79
    Reputation
    8
    Thanks
    1
    My Mood
    Daring
    OMG---- GJ

  4. #3
    ZEROI9's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    88
    Reputation
    10
    Thanks
    18
    My Mood
    Amazed
    When I copied the first code, between form1 and End, I got like 50 errors.. Do you think you can do more detailed? Like, first create a windows application, then first of all doubleclick the background and copy this in, then drag out one button and type this..

  5. #4
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    I Originally Ammended the code but it was rewritten, the errors you get are because I was using Rad Controls not standard windows components simply change the names

    Radlabelelement1.text should be label1.text etc etc


     


     


     



    The Most complete application MPGH will ever offer - 68%




  6. #5
    NovaSynth's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    10
    This tutorial is AMAZING!!!! but i have a slight problem. I copied and Pasted all the codes that you told me to, i even got rid of those "rad" things or w.e so now everything is fine. Im jus having 1 more problem.

    in parts of your code your using a variable called "Dlls" which it cannot find.
    Quote Originally Posted by NextGen1
    ---- Add a button and change the Text to "Clear Selected"
    ---- Double Click the button to generate the Button_Click Event,
    Add this code
    Code:
    For i As Integer = (Dlls.SelectedItems.Count - 1) To 0 Step -1
                Dlls.Items.Remove(Dlls.SelectedItems(i))
            Next
    Any idea how to make this problem go away?

  7. #6
    wtfiwantthatname's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    260
    Reputation
    10
    Thanks
    39
    My Mood
    Bored
    Its the name of the listbox. So switch Dlls to listbox1.
    "I don't believe in an afterlife, so I don't have to spend my whole life fearing hell, or fearing heaven even more. For whatever the tortures of hell, I think the boredom of heaven would be even worse." - Isaac Asimov

  8. The Following User Says Thank You to wtfiwantthatname For This Useful Post:

    NextGen1 (06-16-2010)

  9. #7
    kaziboy's Avatar
    Join Date
    Jun 2008
    Gender
    male
    Location
    quebec
    Posts
    11
    Reputation
    10
    Thanks
    0
    My Mood
    Angelic
    I get an error at

    Private Function GetAsyncKeyState(ByVal vKey As Integer) As Short

    If GetAsyncKeyState(Keys.F12) Then
    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 Injection(F12)...")
    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 If

    End Function

    Function 'GetAsyncKeyState' doesn't return a value on all code paths. Are you missing a 'Return' statement?

    Nvm got it to work

    Hey guys i wanted to share with you what my injector looks like might post it up

    Last edited by kaziboy; 06-20-2010 at 06:34 AM.

  10. #8
    kaziboy's Avatar
    Join Date
    Jun 2008
    Gender
    male
    Location
    quebec
    Posts
    11
    Reputation
    10
    Thanks
    0
    My Mood
    Angelic
    Sorry for secound post but wanduring if anyone could help me to make it work also on windows 7 64bits (x64)

  11. #9
    DayumKen's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Houston, Texas, USA.
    Posts
    130
    Reputation
    10
    Thanks
    46
    My Mood
    Inspired
    Quote Originally Posted by wtfiwantthatname View Post
    Its the name of the listbox. So switch Dlls to listbox1.
    Actually, it's switch Listbox1 TO DLLs

    Lol. Just correcting your mistake.

  12. #10
    kknight25's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    0
    Thanks for this, but i am still getting errors.. around 10.. D:

    Okay i am down to about 6...

    help pl0xz.. D:


    [IMG]https://i587.photobucke*****m/albums/ss314/kknight96/asdasdasdasdsadasdasd.jpg[/IMG]

    This is my complete code ATM

    Code:
    Public Class Form1
    
        Private Sub Button1.Text = "Browse"
            Label1.Text = "Waiting for Process Start..."
            Timer1.Interval = 50
            Timer1.Start()
     Handles MyBase.Load
            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
    
        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 Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click, Button4.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
            TextBox1.Clear()
    
        End Sub
    
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    
        End Sub
    
        Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
            Dlls.Items.Clear()
    
        End Sub
    
        Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click, 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 Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Inject.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 Injection(F12)...")
                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 TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
    
        End Sub
    
        Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
    
        End Sub
    
        Private Sub RadioButton1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton1.CheckedChanged
             (add the name of Inject button i.e button 3).Enabled = True
            Timer1.Enabled = False
    
        End Sub
    
        Private Sub RadioButton2_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button6.CheckedChanged
            Button6.Enabled = False
            Timer1.Enabled = True
        End Sub
    End Class
    Private Function GetAsyncKeyState(ByVal vKey As Integer) As Short
    
        If GetAsyncKeyState(Keys.F12) Then
            If IO.File.Exists(OpenFileDialog1.FileName) Then
                Dim TargetProcess As Process() = Process.GetProcessesByName(RadTextBox1.Text)
                If TargetProcess.Length = 0 Then
    
                    Me.Label1.Text = ("Waiting for " + RadTextBox1.Text + ".exe Injection(F12)...")
                Else
                    Timer1.Stop()
                    Me.Label.Text = "Successfully Injected!"
                    Call Inject()
                    ' If CheckBox1.Checked = True Then
                    'Me.Close()
                    'Else
                    ' End If
                End If
            Else
            End If
        End If
    
    End Function
    Last edited by kknight25; 07-13-2010 at 09:52 PM. Reason: Problems

  13. #11
    kody1206's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    British Columbia
    Posts
    104
    Reputation
    33
    Thanks
    5
    My Mood
    Psychedelic
    Quote Originally Posted by kaziboy View Post
    I get an error at

    Private Function GetAsyncKeyState(ByVal vKey As Integer) As Short

    If GetAsyncKeyState(Keys.F12) Then
    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 Injection(F12)...")
    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 If

    End Function

    Function 'GetAsyncKeyState' doesn't return a value on all code paths. Are you missing a 'Return' statement?

    Nvm got it to work

    Hey guys i wanted to share with you what my injector looks like might post it up

    share your source please?

  14. #12
    habsfan8's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Up in Canada :D MPGH Rank: Platinum
    Posts
    142
    Reputation
    11
    Thanks
    37
    My Mood
    Inspired
    i dont understand m8. i have visual basics 2010. it just is kinda vague instructions

    EDIT: im at the part where i have to Add a Timer.. . where the f*** do i do this
    Last edited by habsfan8; 07-21-2010 at 05:42 PM.


    Respect List
    God601
    Obama
    topblast
    caflames
    -ExileD-

  15. #13
    drwho2's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    It didnt inject dlls at all.

    Quote Originally Posted by drwho2 View Post
    It didnt inject dlls at all.
    It works perfect now. Just a little bit confuse between process without extension and with extension.

    Thanks. rep ++
    Last edited by drwho2; 07-29-2010 at 10:07 PM.

  16. #14
    /b/oss's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    13,651
    Reputation
    795
    Thanks
    3,547
    Quote Originally Posted by drwho2 View Post
    It didnt inject dlls at all.



    It works perfect now. Just a little bit confuse between process without extension and with extension.

    Thanks. rep ++
    fail bumers are fail. STOP BUMPING OLD THREADS!

  17. The Following User Says Thank You to /b/oss For This Useful Post:

    NextGen1 (08-02-2010)

  18. #15
    kknight25's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    0
    can anyone help me?

Page 1 of 2 12 LastLast

Similar Threads

  1. [TUT] How to make an Injector
    By hopefordope in forum Programming Tutorials
    Replies: 68
    Last Post: 05-27-2021, 11:26 AM
  2. [TUT]How to make a Simple Injector!
    By DeathHunter in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 38
    Last Post: 09-14-2010, 04:08 AM
  3. [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
  4. Video tut how to make an injector
    By wassup40 in forum Programming Tutorials
    Replies: 3
    Last Post: 08-03-2010, 09:20 AM
  5. [REQUEST][TUT]How to make injector for hacks in VB8
    By Pixie in forum Visual Basic Programming
    Replies: 19
    Last Post: 10-10-2009, 05:43 AM