Results 1 to 5 of 5
  1. #1
    Boomdocks's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Location
    JAJAJ
    Posts
    195
    Reputation
    15
    Thanks
    35
    My Mood
    Aggressive
    I want to make an injector that will..
    --
    1) download .dll from ftp
    2) injector will load .dll from where download is at
    3) inject. ... then when done it will kill the .dll (delete it)
    -------------
    if there is another way to do this please do help
    --
    i need ur help.. thanks

    I need your help please mpgh
    Last edited by Boomdocks; 03-06-2011 at 01:34 PM.
    " The Ground Is Above, This Noobs Have Mastered Gravity " - Aeir/Boomdocks
    Started Hacking in 2009, don't be too quick to say your a pro... ok theirs many of us who retired.. call us legends, if it was not for them... most of hacks & d3d designs won't be around ok.. #RespectOldNiggas

  2. The Following User Says Thank You to Boomdocks For This Useful Post:

    luccss (03-06-2011)

  3. #2
    Iamazn1's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    407
    Reputation
    12
    Thanks
    50
    I always knew Boomdocks was a copy/paster.
    -_-

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

    AceKill3r (03-07-2011)

  5. #3
    Boomdocks's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Location
    JAJAJ
    Posts
    195
    Reputation
    15
    Thanks
    35
    My Mood
    Aggressive
    Quote Originally Posted by Iamazn1 View Post
    I always knew Boomdocks was a copy/paster.
    -_-
    O.O why you follow me
    --
    men.. any way.. any one can help me?
    " The Ground Is Above, This Noobs Have Mastered Gravity " - Aeir/Boomdocks
    Started Hacking in 2009, don't be too quick to say your a pro... ok theirs many of us who retired.. call us legends, if it was not for them... most of hacks & d3d designs won't be around ok.. #RespectOldNiggas

  6. #4
    Iamazn1's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    407
    Reputation
    12
    Thanks
    50
    Quote Originally Posted by Boomdocks View Post
    O.O why you follow me
    --
    men.. any way.. any one can help me?
    I don't follow you.
    Also:
    1. Download the DLL File.
    2. Write the Downloaded Data to a folder or w/e.
    3. Call your Injection function with the path to the DLL.
    4. Delete the DLL File.
    copy/paste friendly version:
    Code:
    Dim wc as Webclient = new webclient()
    dim dllBytes as byte[] = wc.DownloadData("urltoDLL")
    dim dllPath as string = Application.Startuppath + "\Hack.DLL"
    File.WriteAllBytes(dllPath, dllBytes)
    Inject(dllPath)
    File.Delete(dllPath)
    wc.Dispose()
    Last edited by Iamazn1; 03-06-2011 at 03:32 PM.

  7. The Following 2 Users Say Thank You to Iamazn1 For This Useful Post:

    Boomdocks (03-06-2011),luccss (03-06-2011)

  8. #5
    luccss's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    482
    Reputation
    183
    Thanks
    3,440
    My Mood
    Breezy
    Quote Originally Posted by Boomdocks View Post
    I want to make an injector that will..
    --
    1) download .dll from ftp
    2) injector will load .dll from where download is at
    3) inject. ... then when done it will kill the .dll (delete it)
    -------------
    if there is another way to do this please do help
    --
    i need ur help.. thanks

    I need your help please mpgh
    I'm also in need of help like the same functions, now thanks

    ex:https://www.mpgh.net/forum/164-combat...lins-base.html
    Last edited by luccss; 03-06-2011 at 03:45 PM.