CoolHow to create a injector

Posts 115 of 19 · Page 1 of 2
How to create a injector
You will need :
1 label
1 textbox
4 buttons
1 listbox
1 timer
1 open file dialog
-------------------
Names and stuff:
label = name
Button1 = browse
Button2 = inject
button3 = remove
button4 = clear list
Listbox = Dlls.
Form name = your injector name :
------------------------------------
Code:
Button1 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)
Button2 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
Button3 code:
Code:
ivate Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        For i As Integer = (Dlls.SelectedItems.Count - 1) To 0 Step -1
            Dlls.Items.Remove(Dlls.SelectedItems(i))
        Next
Button4 code:
Code:
 Dlls.Items.Clear()
timer 1 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
-----------------------------------------------------------------------
You can lay this out any way you want
If i helped you please click thanks.!
mmm injector code? asd
Yes injector code is there xD
Leeched source code, isn't so good....
Make video to deserve a sticky !
Quote Originally Posted by Snipermon View Post
Make video to deserve a sticky !
Doubt a copy+paste would get sticky unless it's an indepth look on injectors,explains hella well,and is known to be working.
Quote Originally Posted by Jacket View Post
Doubt a copy+paste would get sticky unless it's an indepth look on injectors,explains hella well,and is known to be working.
your talking right
Quote Originally Posted by Snipermon View Post

your talking right
@Snipermon Lolwhut.
plz make video nice work
When you made the injector will it be undetected or just detected?
cool nice COPY & PASTE
Quote Originally Posted by al3xman View Post
cool nice COPY & PASTE
How we can write the Source Code?
190238190 Hours ...
Quote Originally Posted by Neechan' View Post
How we can write the Source Code?
190238190 Hours ...
all of them the same source code! detected after a time u just renew it!
You look like you're double posting, don't you?
Leeched, but still, thanks for the tutorial.
Posts 115 of 19 · Page 1 of 2

Post a Reply

Tags for this Thread

None

Need help?