[V].ninja (09-24-2010)
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...
[V].ninja (09-24-2010)
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.
You can win the rat race,Originally Posted by Jeremy S. Anderson
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)
Download the .dll with a webclient and inject it on webclient_file download completed event. There are plenty of injector sources.
use a database thats a good start
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
But maybe he isn't planning to release it on MPGH anyway, so why don't we just help him?
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.
You can win the rat race,Originally Posted by Jeremy S. Anderson
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)
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.
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.
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.
You can win the rat race,Originally Posted by Jeremy S. Anderson
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)
@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."
There we go another ungrateful retarded copy & paster.
You can win the rat race,Originally Posted by Jeremy S. Anderson
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)