Results 1 to 12 of 12
  1. #1
    Bskinny's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    56
    Reputation
    11
    Thanks
    8

    Made injector, but having some issues...

    I'm new into the programming scene. I followed a tutorial on here about making a injector. Ran debug etc. It worked. When i open it up, and click browse, nothing happens. Im confused on what i missed or need to do from here. Any help would be great, if not, thanks anyway.


    Here is the code.......

    Public Class Form1
    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.Ex ecutablePath)

    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 = Choose.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

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Button1.Text = "Browse..."
    Label1.Text = "Waiting for Crossfire..."
    Timer1.Interval = 50
    Timer1.Start()


    End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
    If IO.File.Exists(Choose.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 = "JusCaus Injected!"
    Call Inject()
    End If
    Else

    End If

    End Sub

    Private Sub OpenFileDialog1_FileOk(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles Choose.FileOk
    Choose.Filter = "DLL (*.dll) |*.dll"
    Choose.ShowDialog()
    Dim FileName As String
    FileName = Choose.FileName.Substring(Choose.FileName.LastInde xOf("\"))
    Dim DllFileName As String = FileName.Replace("\", "")
    Me.TextBox2.Text = (DllFileName)


    End Sub
    End Class



    JusCaus Stuff...

    My MSN
    JusCaus@hotmail.com

  2. #2
    Gab's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,716
    Reputation
    1755
    Thanks
    1,543
    Moved in the Coding section

  3. #3
    shamwow100's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    My Mood
    Breezy
    Make sure to build a release version too. And if you are on vista or win7 remember to run it as admin

  4. #4
    Bskinny's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    56
    Reputation
    11
    Thanks
    8
    Quote Originally Posted by shamwow100 View Post
    Make sure to build a release version too. And if you are on vista or win7 remember to run it as admin
    did that...still nothing. im still reading online to see if i can find a solution but so far no luck.



    JusCaus Stuff...

    My MSN
    JusCaus@hotmail.com

  5. #5
    shamwow100's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    My Mood
    Breezy
    Quote Originally Posted by Bskinny View Post
    did that...still nothing. im still reading online to see if i can find a solution but so far no luck.
    When it starts, does it crash? What exactly happens?

  6. #6
    Bskinny's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    56
    Reputation
    11
    Thanks
    8
    It doesnt crash at all... When i load it up, and click browse, nothing happens, It dont open a window to choose a .dll.



    JusCaus Stuff...

    My MSN
    JusCaus@hotmail.com

  7. #7
    Legend™'s Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Somewhere.
    Posts
    2,547
    Reputation
    53
    Thanks
    379
    My Mood
    Inspired
    @Bskinny
    Use this code for the Browse for .dll Button.
    Code:
       Using ofd As New OpenFileDialog With {.Filter = "Dynamic Link Libraries (*.dll)|*.dll", .Title = "Browse for you DLL"}
                If ofd.ShowDialog = DialogResult.OK Then
                    MsgBox(ofd.FileName) 'that's the file path that was selected
                End If
            End Using
    L3git™|SυpєrMαrio™


  8. #8
    trismund's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    8
    I'll suggest you all learn the Basics first..

  9. #9
    XSuperX's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    i don't know where Points : 34784
    Posts
    146
    Reputation
    10
    Thanks
    397
    My Mood
    Fine
    Quote Originally Posted by trismund View Post
    I'll suggest you all learn the Basics first..
    pfft you are old learn to answer n00b


    Answer :

    you have to add the code which L3git inserted in the browse button and add

    return = true

  10. #10
    Lakshay's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    www.MPGH.net // General // Crossfire
    Posts
    4,545
    Reputation
    335
    Thanks
    1,102
    My Mood
    Angelic
    Some little minor errors in the Source. And dont forget to Wrap your Codes in
    Code:
    Sample Code
    Tag

  11. #11
    “I fear the day technology will surpass our human interaction. The world will have a generation of idiots.” ~Albert Einstein
    MPGH Member
    SteamAss's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Location
    Crossfire
    Posts
    2,278
    Reputation
    28
    Thanks
    770
    My Mood
    Asleep
    Hey where you got error I culd help you



    If you need my Help:
    PM/VM

    Because The People Who Are Crazy Enough To Think They Can Change The World, Are The Ones Who Do. ~Steve Jobs

  12. #12
    Bskinny's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    56
    Reputation
    11
    Thanks
    8
    I have it working now. A few minor things left.. Thanks for the help guys.



    JusCaus Stuff...

    My MSN
    JusCaus@hotmail.com