Anda di halaman 1dari 6

Arcade

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

Make you own DLL injector

14th May 2015, 01:06 PM

BaroQuE Make you own DLL injector


h4x0!2
Hey there reading this, obviously if you didn't notice, This is a tutorial, A really simple one telling you
your own dll injector, I'll be instructing you and telling you what to use in the form (e.x. : buttons/textb

Required Programs
Visual Studio c++
Copy Pasta

What you should be able to do after this TUT


Make your own dll injector, that injects multiple dll files at once
Join Date: May 2015 Use the 'OpenFileDialog' tool
Location: San Paro
Posts: 112
Alright, I'll be providing my own injector's solution in the downloads, let's start now
Reputation: 440
Rep Power: 56
First

Open Visual Basic


Make a 'Windows Application Form'
This image has been resized. Click this bar to view the full image. The original image is sized 966x582.

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")

This is how the form should look like

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

Everything should look like this

Now you're done placing everything, now naming them


Clear button's name > Button1
Browse button > Button4
Clear Selected button > Button5
Clear Dlls button > Button6
Inject button > Button2
Close button > Button3

Status label > Label3


Empty Label next to status > Label2
___________________________
GroupBox > GroupBox1
Automatic radiobox > RadioButton1
Manual radiobox > RadioButton2
Close after injection button > CheckBox1
___________________________
TextBox > TextBox1
Open Dialog > OpenDialog1
Timer > Timer1

Now after you're finished positioning everything and naming it


step 1 is finished.
-----------------------------------------------------------------------------------------
Step 2

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

The code I mean to put on top of everything but under

Clear button code :


Code:
1. TextBox1.Clear()

Browse button code :


Code:

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

Clear DLLs button :


Code:
1. ListBox1.Items.Clear()

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

15th May 2015, 04:42 AM


15th May 2015, 04:42 AM

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

Join Date: Jan 2014


Location: the universe of vb
Posts: 542
Reputation: 5653
Rep Power: 96

Recognitions:

Donation (20)
Gratuity (2)

Menalix is offline

15th May 2015, 05:08 AM

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.

That's garbage, the looks and everything else


Join Date: Apr 2015
Location: Kindergarten
Posts: 100
Reputation: 325
Rep Power: 0

MoneyFirst is offline

15th May 2015, 06:46 AM

learn_more Do we really need another paste your injector thread?


Retired Administrator
And even if we did, at least name your controls instead
learn_more's Avatar them like button1 etc...
__________________

~ UC-Downloads ~ UC-Forum Rules

Join Date: Sep 2006


Posts: 14,710
Recognitions:
Donation (47)

Former Staff
Gratuity (4)
learn_more is offline

15th May 2015, 06:57 AM

TIGERHax Holy fuck, what is that garbo


.
Quote:
I'll be instructing you and telling you what to use i
Join Date: Mar 2010 (e.x. : buttons/textboxes/etc.)
Posts: 3,789
Reputation: 27625 If someone is able to make a injector code, probably n
Rep Power: 245 he is able to make a fucking damn form...

Recognitions:

Former Staff

TIGERHax is offline

17th December 2016,


10:01 AM
vkn053 Private Sub İnject()
Junior Member Throw New DllNotFoundException()
End Sub
vkn053's Avatar
help me. inject code ?

Join Date: Dec 2014


Location: Turkey
Posts: 46
Reputation: -425
Rep Power: 0

vkn053 is offline

Similar Threads

Thread Thread Starter Forum Replies


[Tutorial] Make your own dll hack | [1] | Memory patching & Editing fredaikis Programming for Beginners 68

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

coding, design, dll, hacking, injector, make, visual


coding, design, dll, hacking, injector, make, visual

� Previous Thread | Next Thread �

Forum Jump
VB.NET

All times are GMT +1. The time now is 05:02 PM.

Make you own DLL injector


Terms of Use Information Privacy Policy Information
Copyright �2000-2017, Unknowncheats� UKCS # 312436
no new posts
- Sponsored Advertisement -

Anda mungkin juga menyukai