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...
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.
Download the .dll with a webclient and inject it on webclient_file download completed event. There are plenty of injector sources.
Originally Posted by Blubb1337
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
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.
Originally Posted by Blubb1337
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.
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("http://www.example.com/NOOB.dll", wheretosave)
'change "http://www.example.com/NOOB.dll" to the location of your .dll on ******** i.e
"http://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]
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.
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?
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.
@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.
Originally Posted by Blubb1337
There we go another ungrateful retarded copy & paster.