(Tutorial) Make You Own DLL Injector
(Tutorial) Make You Own DLL Injector
UnKnoWnCheaTs - Multiplayer Game Hacks and Cheats > Anti-Cheat Software &
Programming > VB.NET User Name Log in
[Tutorial] Make you own DLL injector
•••••••• Save
- Sponsored Advertisement -
Make you own DLL injector Optional Authenticator Code
Required Programs
Visual Studio c++
Copy Pasta
Put your Injector's name where it says "<name_here>" and directory where it says <location> (Just clic
button, It's usually set to "C:\Users\Warlock\Documents\Visual Studio 2012\Projects")
Now you can edit the form's properties from the properties tab or just code it, I'll do it with code and g
code as well
This is the properties panel, obviously, Text = Form's title
Code (Click the title and pasta)
Code:
1. Me.Text = "Title here"
1. Me.Text = "Title here"
2. FormBorderStyle = Windows.F;orms.FormBorderStyle.FixedToolWindow
3. MaximizeBox = False
4. MinimizeBox = False
5. ShowIcon = False
Now add every single button, textbox, listbox, radiobox, checkbox, label I will mention
___________________________
RadioBox1
RadioBox2
CheckBox1
Button1
Button2
Button3
Button4
Button5
Button6
ListBox1
TextBox1
Label1
Label2
Label3
GroupBox1
OpenFileDialog1
Timer1
Now, let's code I guess, we'll start with adding this huge code at the start of the form, double click on t
and pasta the code before any other code, check the next spoiler for codes, here's the code I mean
1. OpenFileDialog1.Filter = "DLL|*.dll"
2. OpenFileDialog1.ShowDialog()
3. Dim FileName As String
4. FileName = OpenFileDialog1.FileName.Substring(OpenFileDialog1.FileName.
5. Dim DllFileName As String = FileName.Replace("\", "")
6. Me.ListBox1.Items.Add(DllFileName)
Clear selected :
Code:
1. For i As Integer = (ListBox1.SelectedItems.Count - 1) To 0 Step -1
1. For i As Integer = (ListBox1.SelectedItems.Count - 1) To 0 Step -1
2. ListBox1.Items.Remove(ListBox1.SelectedItems(i))
3. Next
Automatic radiobutton :
Code:
1. Timer1.Start()
2. CheckBox1.Checked = True
Manual radiobutton :
Code:
1. Timer1.Stop()
2. CheckBox1.Checked = True
Inject button :
Code:
1. End If
2. Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text
3. If TargetProcess.Length = 0 Then
4.
5. Label2.Text = ("Waiting For : " + TextBox1.Text + ".exe" + "....")
6. Else
7. Timer1.Stop()
8. Label2.ForeColor = Color.Green
9. Label2.Text = "Injection Successful!"
10. Call Inject()
11. If CheckBox1.Checked = True Then
12. Me.Close()
13. Else
14. End If
15. End If
Close button :
Code:
1. Close()
Timer1 Code :
Code:
1. If IO.File.Exists(OpenFileDialog1.FileName) Then
2. Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1
3. If TargetProcess.Length = 0 Then
4. Label2.ForeColor = Color.Red
5. Label2.Text = ("Waiting For : " + TextBox1.Text + ".exe" + "...."
6. Else
7. Timer1.Stop()
8. Label2.ForeColor = Color.Green
9. Label2.Text = "Injection Successful!"
10. Call Inject()
11. If CheckBox1.Checked = True Then
12. Me.Close()
13. End If
14.
15. End If
16. End If
I guess that's it, These are the codes, I don't know if that's useful or not, but if there's a problem with th
someone don't like it, please tell me why, I will be really glade ^^
Solution (Source code) Is available for anyone who can't do a step correctly to view and check out, don
+rep thanks if I helped ^^, I just realized I am a bad, bad tutor lol well sorry xD
+REP IF U CAN
__________________
RIP - Phumipol Adulyadej 1927-2016
Last edited by BaroQuE; 14th May 2015 at 01:22 PM. Reason: Fix image links
BaroQuE is offline
Menalix Worst tutorial, you didn't accomplish what you wanted? lol
Evil vb gui interface hacker The title should be: How to make a injector look a like application which does nothing.
Menalix's Avatar
Recognitions:
Donation (20)
Gratuity (2)
Menalix is offline
MoneyFirst Quote:
Ban reason: Custom / undisclosed
Originally Posted by Menalix
MoneyFirst's Avatar Worst tutorial, you didn't accomplish what you wanted? lol
The title should be: How to make a injector look a like application which does nothing.
MoneyFirst is offline
Former Staff
Gratuity (4)
learn_more is offline
Recognitions:
Former Staff
TIGERHax is offline
vkn053 is offline
Similar Threads
Any tuts on how to make your own private injector for Arma3? ReversEngi ARMA 3 2 31st March
People who are managers or own their own business can you please answer
lexus PC Software 2 5th February
the following
Why would you write your own injector? hjefferson Programming for Beginners 7
[Request] Help the Tut. of making own dll injector zEiyah VB.NET 1 14th November
Tags
Forum Jump
VB.NET
All times are GMT +1. The time now is 05:02 PM.