Page 1 of 4 123 ... LastLast
Results 1 to 15 of 49
  1. #1
    qddW$#%^jtyjtyj's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    721
    Reputation
    7
    Thanks
    148
    My Mood
    Mellow

    [Help] Streaming Hacks Into My Loader

    Well i readed the post about the [Help]Streaming hacks in loader

    but i didnt find any help out of it......

    So what i want is just to make the button stream the .dll into the application and inject it.. Cause i've already done the add hacks in listbox thing

    so i just want to know... How do i stream hacks into my loader and inject it when i click the Load button...

  2. The Following User Says Thank You to qddW$#%^jtyjtyj For This Useful Post:

    [V].ninja (09-24-2010)

  3. #2
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,679
    My Mood
    Mellow
    Uhh I don't fully get what you mean.

    Are you meaning a standard Injector, i.e locate the .dll press load and it starts waiting to inject? Or a built in .dll that when you run the loader it's auto-ready to inject.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  4. #3
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Download the .dll with a webclient and inject it on webclient_file download completed event. There are plenty of injector sources.



  5. #4
    qddW$#%^jtyjtyj's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    721
    Reputation
    7
    Thanks
    148
    My Mood
    Mellow
    Quote Originally Posted by Blubb1337 View Post
    Download the .dll with a webclient and inject it on webclient_file download completed event. There are plenty of injector sources.
    but i mean like the .dll never was on the computer

  6. #5
    GameTrainerMaker's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    465
    Reputation
    17
    Thanks
    514
    use a database thats a good start

  7. #6
    wtfiwantthatname's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    260
    Reputation
    10
    Thanks
    39
    My Mood
    Bored
    Store the DLL on a website and have the client download it(either to the HDD or Memory) and than inject it.
    "I don't believe in an afterlife, so I don't have to spend my whole life fearing hell, or fearing heaven even more. For whatever the tortures of hell, I think the boredom of heaven would be even worse." - Isaac Asimov

  8. #7
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy
    Quote Originally Posted by Blubb1337 View Post
    Download the .dll with a webclient and inject it on webclient_file download completed event. There are plenty of injector sources.
    Not allowed unless you are staff on mpgh.

    One way you can do is, write the.dll from my.resource.
    -Rest in peace leechers-

    Your PM box is 100% full.

  9. #8
    Invidus's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    2,167
    Reputation
    23
    Thanks
    650
    My Mood
    Bored
    But maybe he isn't planning to release it on MPGH anyway, so why don't we just help him?

  10. #9
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,679
    My Mood
    Mellow
    I'm going to help him. If he releases it on MPGH, it'll get closed. But still, learning how to DL shit from your program is a good thing to know how to do.

    Okay first of all, you need a FTP site to store the .dll. I recommend ******** because they're easy and they work.

    After you've got an FTP and uploaded your .dll to it, it's time to start programming.

    First off, the basic objects you'll need are

    NOTE: this is probably the most basic way of downloading.

    1 button.
    a savefiledialog.

    That's about it for the basics.

    Okay first add this declaration to your form just below "Public Class Form1"

    [php]
    dim wheretosave as string
    [/php]

    Now change the text on your button to "Download" and double click it to get to it's code.

    Now first of all you want to know where to save the file:

    [php]
    SaveFileDialog1.Title = "Where do you want to save the .dll?"
    SaveFileDialog1.Filter = ".DLL files (*.dll)|*.dll"
    SaveFileDialog1.RestoreDirectory = True

    'this is pretty self explanatory, its just configuring your savefiledialog so that the title is "Where do you want to save the .dll" and the file type is .dll.'

    If SaveFileDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then
    wheretosave = SaveFileDialog1.FileName
    My.Computer.Network.DownloadFile("https://www.example.com/NOOB.dll", wheretosave)

    'change "https://www.example.com/NOOB.dll" to the location of your .dll on ******** i.e
    "https://www.example.********.com/resources/NOOB.dll" or something like that. '
    End If
    [/php]

    Okay now you've downloaded the file to the user selected folder.

    Then in your injector part of the code, all you have to do is browse for the .dll. I.e say you have a listbox:

    [php]
    ListBox1.Items.Add(wheretosave & "\NOOB.dll") 'change "NOOB.dll" to the name of your .dll'
    [/php]

    or just change the line of the injection code to

    [php]
    pszLibFileRemote = (wheretosave & "\NOOB.dll") 'change "NOOB.dll" to the name of your .dll'
    [/php]

    and that's about it. You should have a grasp of the basics now and SHOULD be able to play around with it to fit your needs.

    Ideas to make it better:

    Use My.Settings.XXX to hold the location of the folder that the .dll is saved in so it remembers every time you open the program.

    i.e go to Project>>XXXX properties (at the very bottom of the drop down menu, XXXX is your project name)
    Then hit the "Settings" tab and add a new setting

    Name: SaveFile
    Type: String
    Scope: User
    Value: Leave this as default (blank)

    Then add the following line to the button1_click sub. Between the If -> End If wrappers around the savefiledialog1.

    [php]
    My.Settings.SaveFile = SaveFileDialog1.FileName
    My.Settings.Save()
    My.Settings.Reload()
    [/php]

    Then add this to your form_load event

    [php]
    If not My.Settings.SaveFile = "" then
    wheretosave = My.Settings.SaveFile

    End if
    [/php]

    Well yeah, you can work the rest on your own hopefully.

    J-Deezy.
    Last edited by Jason; 06-26-2010 at 02:42 PM.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  11. The Following 3 Users Say Thank You to Jason For This Useful Post:

    jajarem64 (07-05-2010),Lolland (06-26-2010),xakerino (01-25-2011)

  12. #10
    jajarem64's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Sarasota, FL - USA
    Posts
    318
    Reputation
    -13
    Thanks
    17
    My Mood
    Relaxed
    I think you guys just don't have the answer cause I asked the same question a month ago and I get the same answer every time but I want it to be fool proof what if I'm trying to stream the hacks and they're VIP's and I don't want any sneaky choobs getting it.

  13. #11
    qddW$#%^jtyjtyj's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    721
    Reputation
    7
    Thanks
    148
    My Mood
    Mellow
    AHAHAHA i am not releasing it on MPGH

    i just want to learn more so i can make loaders and know how to do such things

    _____________________

    Ok then i got another question... How do i inject from my resources?
    Last edited by qddW$#%^jtyjtyj; 07-04-2010 at 08:25 PM.

  14. #12
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,679
    My Mood
    Mellow
    No because you need to have the file stored in your computer for it to be able to access the file properly I'm pretty sure. I'm not sure that you can delete it straight after injection either because it may be necessary to have the DLL to access the information stored in it.

    @jajarem, we do know how to do it lol, if you've even read the thread I posted how to download off your FTP, you can store it in a random hidden folder if you so wish as well. If you knew anything about VB you could figure it out yourself too.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  15. #13
    jajarem64's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Sarasota, FL - USA
    Posts
    318
    Reputation
    -13
    Thanks
    17
    My Mood
    Relaxed
    @J-Deezy I don't have the time to sit on my fat ass if I had 1 like most of you, and just don't have time for a flame war. If you know the answer don't beat around the bush just tell us when we ask. Yes I just started VB a while back and yeah I don't know how to do some stuff.
    @Techial I wouldn't release it here either I just came and posted in here for just help not to have these greedy green goblins say "No release it here, no help. Oh btw it'll just get deleted."

  16. #14
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    There we go another ungrateful retarded copy & paster.



  17. #15
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,679
    My Mood
    Mellow
    Quote Originally Posted by Blubb1337 View Post
    There we go another ungrateful retarded copy & paster.
    QFT.

    I think he even mentioned me having a fat ass

    First time I've heard that said on the internetz.

    I'm going to go slash my wrists, later guys.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

Page 1 of 4 123 ... LastLast

Similar Threads

  1. (help) draw my hack into opertion 7
    By tremaster in forum Visual Basic Programming
    Replies: 9
    Last Post: 11-09-2010, 04:42 PM
  2. help with drawing my hack into a window
    By tremaster in forum Visual Basic Programming
    Replies: 6
    Last Post: 10-26-2010, 08:27 PM
  3. Help streaming my hacks
    By jajarem64 in forum Visual Basic Programming
    Replies: 2
    Last Post: 07-04-2010, 03:37 PM
  4. [Help]Streaming hacks in loader.
    By jajarem64 in forum Visual Basic Programming
    Replies: 32
    Last Post: 06-23-2010, 08:06 PM
  5. Help me get into the hack making business?
    By erodoria in forum Combat Arms Help
    Replies: 2
    Last Post: 03-24-2010, 02:38 AM