Page 3 of 5 FirstFirst 12345 LastLast
Results 31 to 45 of 69
  1. #31
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Should work, Haven't tested it, but its the original tut, modified slightly


     


     


     



    The Most complete application MPGH will ever offer - 68%




  2. #32
    lootit's Avatar
    Join Date
    Apr 2008
    Gender
    male
    Posts
    43
    Reputation
    10
    Thanks
    17
    My Mood
    Bitchy
    Anyone got time to show me how to add openFileDialog1 and GetAsyncKeyState i get 7 error when trying to run becase of these 2 i see where u said now add openFileDialog1 i dont know how heh

  3. #33
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Add openFileDialog Using The ToolBox, Drag and Drop OpenFIleDialog From Toolbox on top form, Error dissapears...


     


     


     



    The Most complete application MPGH will ever offer - 68%




  4. The Following User Says Thank You to NextGen1 For This Useful Post:

    21sean21 (06-03-2010)

  5. #34
    tempta43's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    980
    Reputation
    23
    Thanks
    295
    My Mood
    Bored
    I get lots of errors :l

  6. #35
    hopefordope's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Herndon,VA
    Posts
    264
    Reputation
    9
    Thanks
    86
    My Mood
    Psychedelic
    NG can u delete this thread and i am gonna make a new 1 with ur version

    Press Thank You[IMG]https://i45.tinypic.com/2hg8w0n.jpghttps://img1.UploadScreensho*****m/images/main/2/3203234450.jpg[/IMG]










    My Releases
    Injector 3G
    Injector 2G
    Injector 1G
    Super Spammer
    CA Cleaner
    My Tutorials
    How to Make a real Injector(PerX)
    How to Make a Calculator(leeched)

  7. #36
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    I will ask Why06 to close it.

    But it is up to him not me

    /Close Request



     


     


     



    The Most complete application MPGH will ever offer - 68%




  8. #37
    shoot2killl's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    53
    Reputation
    10
    Thanks
    13
    yea i got a lot of erors

  9. #38
    bbhing98's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    19
    Reputation
    9
    Thanks
    0
    i get 31 errors

  10. #39
    qddW$#%^jtyjtyj's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    721
    Reputation
    7
    Thanks
    148
    My Mood
    Mellow
    hopefordope... you need to fix the getasyncekeystate cause you did add it

    OMG noobs you got 31 errors?

    i had only one cause i needed to fix the getasyncekeystate cause he didnt do it

    ok to help you guys

    put this at the top:
    Code:
    Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Long) As Integer
        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)
    then click enter and put in this:
    Code:
    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 = OpenFileDialog1.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
    Then do all the other things

    Now you got 0 errors :P
    Last edited by qddW$#%^jtyjtyj; 05-15-2010 at 02:35 PM.

  11. #40
    /b/oss's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    13,651
    Reputation
    795
    Thanks
    3,547
    you should tell us how to make stealth injector if you know

  12. #41
    Basilisk's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    The Netherlands
    Posts
    25
    Reputation
    10
    Thanks
    3
    My Mood
    Devilish
    Thanks dude, good tut!

    Keep going!

  13. #42
    benl's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In Hell
    Posts
    611
    Reputation
    7
    Thanks
    43
    My Mood
    Cheerful
    I never like to use others codes for injectors unless i know everything thats going on

  14. #43
    'Bruno's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Portugal
    Posts
    2,883
    Reputation
    290
    Thanks
    1,036
    My Mood
    Busy
    Quote Originally Posted by benl View Post
    I never like to use others codes for injectors unless i know everything thats going on
    You really should kill yourself with that sig... -.-
    Light travels faster than sound. That's why most people seem bright until you hear them speak.

  15. #44
    /b/oss's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    13,651
    Reputation
    795
    Thanks
    3,547
    Quote Originally Posted by Brinuz View Post
    You really should kill yourself with that sig... -.-
    i agree with you -.-"

  16. #45
    jajarem64's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Sarasota, FL - USA
    Posts
    318
    Reputation
    -13
    Thanks
    17
    My Mood
    Relaxed
    Ok nice tut and all but I see something that is kind of making me stumble on the 2 radio buttons there is this () I remove those as you said now I'm wondering should I also remove this ' because if you got ' and it needs to be there I'm kind of thinking it should be on both. Someone tell me please :/

Page 3 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. [TUT]How to make a Simple Injector!
    By DeathHunter in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 38
    Last Post: 09-14-2010, 04:08 AM
  2. [TUT]How to make an Advanced Injector!
    By DeathHunter in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 45
    Last Post: 09-09-2010, 08:30 PM
  3. TUT HOW TO MAKE A INJECTOR [REVISED]
    By hopefordope in forum Programming Tutorials
    Replies: 15
    Last Post: 08-07-2010, 05:39 PM
  4. Video tut how to make an injector
    By wassup40 in forum Programming Tutorials
    Replies: 3
    Last Post: 08-03-2010, 09:20 AM
  5. [REQUEST][TUT]How to make injector for hacks in VB8
    By Pixie in forum Visual Basic Programming
    Replies: 19
    Last Post: 10-10-2009, 05:43 AM

Tags for this Thread