Results 1 to 12 of 12
  1. #1
    __]H[elroos's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Rome
    Posts
    301
    Reputation
    44
    Thanks
    842
    My Mood
    Angelic

    [VB.NET] Injection source

    Hi, there is a working injection source!

    Code:
    Private Function Inject(ByVal pID As Integer, ByVal dllLocation As String) As Boolean
        If (IntPtr.Size = 8) Then
            Throw New ArgumentException("Please make sure this program is compiled as x86, not x64. Memory functions don't work so well otherwise.")
        End If
        Dim hProcess As Integer = OpenProcess(&H1F0FFF, 1, pID)
        If (hProcess = 0) Then
            Return False
        End If
        Dim bytes As Byte() = Encoding.ASCII.GetBytes(dllLocation)
        Dim lpBaseAddress As Integer = VirtualAllocEx(hProcess, 0, bytes.Length, &H1000, 4)
        If (lpBaseAddress = 0) Then
            Return False
        End If
        Dim lpModuleName As String = "kernel32.dll"
        Dim moduleHandle As Integer = GetModuleHandle(lpModuleName)
        lpModuleName = "LoadLibraryA"
        Dim procAddress As Integer = GetProcAddress(moduleHandle, lpModuleName)
        If ((moduleHandle = 0) OrElse (procAddress = 0)) Then
            Return False
        End If
        WriteProcessMemory(hProcess, lpBaseAddress, bytes, bytes.Length, 0)
        Dim hHandle As Integer = CreateRemoteThread(hProcess, 0, 0, procAddress, lpBaseAddress, 0, 0)
        If (hHandle = 0) Then
            Return False
        End If
        WaitForSingleObject(hHandle, &H1388)
        CloseHandle(hHandle)
        CloseHandle(hProcess)
        Label3.Text = "Successfully Injected"
        If CheckBox1.Checked Then
            Me.Close
        End If
        Label3.ForeColor = Color.Green
        Return True
    End Function
    This source has been not made by me, i just found it.
    If you like this thread please, press "Thanks"!

    Press Rep if you like my programs and my helps


  2. The Following User Says Thank You to __]H[elroos For This Useful Post:

    mohhaned (11-13-2012)

  3. #2
    derh.acker's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    localhost
    Posts
    826
    Reputation
    14
    Thanks
    616
    My Mood
    Angelic
    It's already being leeched by much injector 'makers'

  4. #3
    KerozHany's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    297
    Reputation
    23
    Thanks
    3,574
    Quote Originally Posted by derh.acker View Post
    It's already being leeched by much injector 'makers'
    he said that

  5. The Following User Says Thank You to KerozHany For This Useful Post:

    [H]aaBX (11-12-2012)

  6. #4
    Biesi's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    4,993
    Reputation
    374
    Thanks
    8,832
    My Mood
    Twisted
    You just took an injector and decompiled it

  7. #5
    Royku's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    G-Force.dll
    Posts
    3,015
    Reputation
    381
    Thanks
    3,308
    My Mood
    Devilish
    Google : Dll Injector Source Code.
    and you're done

  8. #6
    Shartob1's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    INDO-CROSSFIRE
    Posts
    140
    Reputation
    10
    Thanks
    14
    My Mood
    Amused
    Quote Originally Posted by Royku View Post
    Google : Dll Injector Source Code.
    and you're done
    Thanks for the advice
    <=======================================>
    PRESS THANK'S IF I HELP YOU
    <=======================================>
    INDO-CROSSFIRE

     

    - Make Hack Crossfire
    - Make Loader
    - Make 30 Function's
    - Make Weapon Logger
    - Make Value Logger
    - Make Addy Logger
    - Make Public Hack
    - Make Bypass Xtrap
    - Make Bypass Client Error
    - Make D3D
    - Make Aimbot [0%]


     
    => dicky87smd (my teacher)
    => Kareem111 (best friend)
    => MagicWar7

  9. #7
    Rullez's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    Vancouver, Canada
    Posts
    4,072
    Reputation
    316
    Thanks
    26,175
    My Mood
    Bored
    Nice Code......






  10. #8
    derh.acker's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    localhost
    Posts
    826
    Reputation
    14
    Thanks
    616
    My Mood
    Angelic
    Last edited by derh.acker; 11-13-2012 at 08:30 AM.

  11. #9
    __]H[elroos's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Rome
    Posts
    301
    Reputation
    44
    Thanks
    842
    My Mood
    Angelic
    Quote Originally Posted by -BiESi View Post
    You just took an injector and decompiled it
    This source has been not made by me
    Even if I did, what's the problem? It's not against the rules...
    I just want help some little coders, they shouldn't copy and paste the source, but study it and understand what it does...

    And stay sure it's not an private injection source..

    Press Rep if you like my programs and my helps


  12. #10
    needwall's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    340
    Reputation
    10
    Thanks
    21
    u can make a injector, but with that codes, anyone can make your personal injector. make injector is so easy. try make one for yourself.

  13. #11

  14. #12
    __]H[elroos's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Rome
    Posts
    301
    Reputation
    44
    Thanks
    842
    My Mood
    Angelic
    Quote Originally Posted by needwall View Post
    u can make a injector, but with that codes, anyone can make your personal injector. make injector is so easy. try make one for yourself.
    Wtf are you saying? ò.O
    I don't understand, and i think nobody understand :\

    Press Rep if you like my programs and my helps


Similar Threads

  1. [Source Code] C# & VB.net Code Injection Source only
    By Pingo in forum Call of Duty Black Ops Coding, Programming & Source Code
    Replies: 3
    Last Post: 07-31-2011, 03:33 AM
  2. [HELP]Good injecter source code!
    By DeathHunter in forum Programming Tutorial Requests
    Replies: 7
    Last Post: 02-22-2010, 01:32 PM
  3. Real VB injecter Source code
    By Ugleh in forum Visual Basic Programming
    Replies: 34
    Last Post: 01-02-2010, 09:38 PM
  4. [RELEASE] VB Injecter source!
    By hack. in forum Visual Basic Programming
    Replies: 4
    Last Post: 10-16-2009, 07:25 PM
  5. VB injecter Source code
    By Jimmy in forum Visual Basic Programming
    Replies: 20
    Last Post: 09-26-2009, 04:22 PM