PhLeechers
Would you like to react to this message? Create an account in a few clicks or log in to continue.


I am the leech king :)
 
HomePortalLatest imagesSearchRegisterLog in



 

 How to make own injector?

Go down 
4 posters
AuthorMessage
KiDLAT !
Administrator
Administrator
KiDLAT !


Posts : 99
Points : 358
Reputation : 11
Join date : 18/08/2012

How to make own injector? Empty
PostSubject: How to make own injector?   How to make own injector? EmptyTue Aug 21, 2012 10:56 am

Visual Basic 2008 or higher <~ find it in our pc tools

[You must be registered and logged in to see this image.][/size][/center][/color]
[You must be registered and logged in to see this link.]

1st. Make a new project : Windows Forms Application
2nd: Add the following:
Code:
5 Buttons
2 Radiobuttons
2 Labels
1 Listboxes
1 Timers
1 OpenFileDialog
1 Checkbox
1 Textbox
3rd.Rename the Following
Code:
Button1 = "Browse"
Button2 = "Remove Selected"
Button3 = "Clear List"
Button4 = "Inject"
Button5 = "Quit"
RadioButton1 = "Manual"
RadioButton2 = "Automatic"
Label1 = "Waiting for Program..."
Label2 = "Status:"
ListBox1 = "DLLs"(this time it's not the 'TEXT', it's for the real name
CheckBox1 = "Close if injection is done.."
TextBox1 = "specialforce"(or any process name you want)
4th. Double Click the form and in between of this: "Public Class Form1" and "Private Sub Form_Load... blah blah blah..." , add this:
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)
5th.Bellow that 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)

6th. Change the settings of the following:
Form1 :
Code:
Text = "Any Name You Want"
FormBorderStyle = Any border that is not resizable
Show Icon = True(If you have no icon, set it to false)
BackColor/BackGroundImage = Any Color/Any Image(If image, set BackGroundImageLayout to 'Stretch')
Icon = Select a .ico image file
Maximize Box = False
Start Position = Center Screen
RadioButton2 : Checked = True
CheckBox1 : Checked = True

7th. Now For Coding.
Form_Load:
Code:
DLLs.Name = "DLLs"
Button1.Text = "Browse"
Label1.Text = "Waiting for Program to Start.."
Timer1.Interval = 50
Timer1.Start()
Button 1(Browse):
Code:
OpenFileDialog1.Filter = "DLL (*.dll) |*.dll"
OpenFileDialog1.ShowDialog()
Button 2(Remove Selected):
Code:
For i As Integer = (DLLs.SelectedItems.Count - 1) To 0 Step -1
DLLs.Items.Remove(DLLs.SelectedItems(i))
Next
Button 3(Clear List):
Code:
DLLs.Items.Clear()
Button 4(Inject):
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
End
Else
End If
End If
Else
End If
Button 5(Quit):
Code:
Me.Close()
Radio Button 1(Manual):
Code:
Button4.Enabled = True
Timer1.Enabled = False
Radio Button 2(Automatic):
Code:
Button4.Enabled = False
Timer1.Enabled = True
Timer1 :
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
End
Else
End If
End If
Else
End If
OpenFileDialog1:
Code:
Dim FileName As String
FileName = OpenFileDialog1.FileName.Substring(OpenFileDialog1.FileName.LastIndexOf("\"))
Dim DllFileName As String = FileName.Replace("\", "")
Me.DLLs.Items.Add(DllFileName)


Now your Done Just Debug your Injector and Save ALL
You now have your own injector






______________________________________________________________________________

[color=green][center][size=18]instead of saying thanks press CLICK ONCE A DAY button it will help our site alot


Last edited by KiDLAT ! on Sun Sep 02, 2012 3:56 pm; edited 2 times in total
Back to top Go down
https://phleechers.forumtl.com
jirehanime
[PHL] Newbie
[PHL] Newbie



Posts : 2
Points : 10
Reputation : 0
Join date : 21/08/2012

How to make own injector? Empty
PostSubject: Re: How to make own injector?   How to make own injector? EmptyTue Aug 21, 2012 2:41 pm

thnxz
Back to top Go down
anthony012
[PHL] Newbie
[PHL] Newbie



Posts : 1
Points : 5
Reputation : 0
Join date : 19/08/2012

How to make own injector? Empty
PostSubject: Re: How to make own injector?   How to make own injector? EmptyFri Aug 24, 2012 1:05 pm



Thankz! sir sa TUT nyo... Very Happy

More Power!.,,, Very Happy


sana TUT naman sa Making 0wn Wallhack!... Very Happy
Back to top Go down
KiDLAT !
Administrator
Administrator
KiDLAT !


Posts : 99
Points : 358
Reputation : 11
Join date : 18/08/2012

How to make own injector? Empty
PostSubject: Re: How to make own injector?   How to make own injector? EmptyFri Aug 24, 2012 1:11 pm



sir.. kahit ako di ko po kayang gumawa ng sariling hack ^_^ haha




______________________________________________________________________________

instead of saying thanks press CLICK ONCE A DAY button it will help our site alot

[You must be registered and logged in to see this image.]

Back to top Go down
https://phleechers.forumtl.com
bagwis0014
[PHL] Sophomore
[PHL] Sophomore
bagwis0014


Posts : 28
Points : 90
Reputation : 0
Join date : 19/08/2012
Age : 42
Location : las pinas city

How to make own injector? Empty
PostSubject: Re: How to make own injector?   How to make own injector? EmptyWed Aug 29, 2012 7:48 pm

enx po ser cheers
Back to top Go down
http://lpcbagwis.wetpaint.com
bagwis0014
[PHL] Sophomore
[PHL] Sophomore
bagwis0014


Posts : 28
Points : 90
Reputation : 0
Join date : 19/08/2012
Age : 42
Location : las pinas city

How to make own injector? Empty
PostSubject: Re: How to make own injector?   How to make own injector? EmptySun Sep 02, 2012 3:26 pm

ser error po ung source code nyo
Back to top Go down
http://lpcbagwis.wetpaint.com
KiDLAT !
Administrator
Administrator
KiDLAT !


Posts : 99
Points : 358
Reputation : 11
Join date : 18/08/2012

How to make own injector? Empty
PostSubject: Re: How to make own injector?   How to make own injector? EmptySun Sep 02, 2012 3:39 pm

mali lagay mo, follow mo ung nsa utube nilagay ko na ung code jaan, download mo nlng pra mas malinaw
Back to top Go down
https://phleechers.forumtl.com
bagwis0014
[PHL] Sophomore
[PHL] Sophomore
bagwis0014


Posts : 28
Points : 90
Reputation : 0
Join date : 19/08/2012
Age : 42
Location : las pinas city

How to make own injector? Empty
PostSubject: Re: How to make own injector?   How to make own injector? EmptySun Sep 02, 2012 8:09 pm

ser sinunod ko nman po ung instructions nyo,.. ganun parin error po Sad
Back to top Go down
http://lpcbagwis.wetpaint.com
bagwis0014
[PHL] Sophomore
[PHL] Sophomore
bagwis0014


Posts : 28
Points : 90
Reputation : 0
Join date : 19/08/2012
Age : 42
Location : las pinas city

How to make own injector? Empty
PostSubject: Re: How to make own injector?   How to make own injector? EmptySun Sep 02, 2012 8:10 pm

25 error po Sad
Back to top Go down
http://lpcbagwis.wetpaint.com
bagwis0014
[PHL] Sophomore
[PHL] Sophomore
bagwis0014


Posts : 28
Points : 90
Reputation : 0
Join date : 19/08/2012
Age : 42
Location : las pinas city

How to make own injector? Empty
PostSubject: Re: How to make own injector?   How to make own injector? EmptySun Sep 02, 2012 8:16 pm

<script src='http://img62.imageshack.us/shareable/?i=94878964.jpg&p=tl' type='text/javascript'></script><noscript>[You must be registered and logged in to see this link.]</noscript>

yan po un ser oh
Back to top Go down
http://lpcbagwis.wetpaint.com
bagwis0014
[PHL] Sophomore
[PHL] Sophomore
bagwis0014


Posts : 28
Points : 90
Reputation : 0
Join date : 19/08/2012
Age : 42
Location : las pinas city

How to make own injector? Empty
PostSubject: Re: How to make own injector?   How to make own injector? EmptySun Sep 02, 2012 8:16 pm

[You must be registered and logged in to see this link.]

Back to top Go down
http://lpcbagwis.wetpaint.com
KiDLAT !
Administrator
Administrator
KiDLAT !


Posts : 99
Points : 358
Reputation : 11
Join date : 18/08/2012

How to make own injector? Empty
PostSubject: Re: How to make own injector?   How to make own injector? EmptySun Sep 02, 2012 8:38 pm

download mo codes. then watch mo utube ng maige
Back to top Go down
https://phleechers.forumtl.com
bagwis0014
[PHL] Sophomore
[PHL] Sophomore
bagwis0014


Posts : 28
Points : 90
Reputation : 0
Join date : 19/08/2012
Age : 42
Location : las pinas city

How to make own injector? Empty
PostSubject: Re: How to make own injector?   How to make own injector? EmptyTue Sep 04, 2012 6:49 am

ganono parin ser, lalong lumake error nya nasa 54 Sad
Back to top Go down
http://lpcbagwis.wetpaint.com
bagwis0014
[PHL] Sophomore
[PHL] Sophomore
bagwis0014


Posts : 28
Points : 90
Reputation : 0
Join date : 19/08/2012
Age : 42
Location : las pinas city

How to make own injector? Empty
PostSubject: Re: How to make own injector?   How to make own injector? EmptyTue Sep 04, 2012 12:12 pm

ser ok na po tenx sa info Laughing
Back to top Go down
http://lpcbagwis.wetpaint.com
Sponsored content





How to make own injector? Empty
PostSubject: Re: How to make own injector?   How to make own injector? Empty

Back to top Go down
 
How to make own injector?
Back to top 
Page 1 of 1
 Similar topics
-
» Gelo's injector
» Req: tools for injector
» How to make your PC faster

Permissions in this forum:You cannot reply to topics in this forum
PhLeechers :: Other download section :: Injectors-
Jump to: