autocopy / autorun VB6 application 02-19-2013, 10:33 PM
#1
hi, im in the process of finally finishing my rat. but ive come to a point that even though its cool to use it, once the victim realizes of the threat it can just delete the application and close it via tskmgr and thats it. im done.
So i wanted to know if anyone kind enough here can tell me a way to autocopy the application once it is run. i mean, once the person exes the app, it should make a copy of itself to other secret folder. And once it is copied just execute that copy. So if the victim just deletes the first exe, the second one would still be sending me signal. *ive already have the regedit ability to execute once windows is started up. PLUS i have my own way to making this possible, but maybe there is a much faster and efficient way.
So far i have the autocopy:
FileCopy App.Path & "\" & App.EXEName & ".exe", "C:\" & App.EXEName & ".exe"
Oh, and im thinking of a way of autorun it. probably by just adding a timer. i mean, applying the autocopy code to the FORMLOAD, and then in a timer just placing the execute code![Wink Wink](https://sinister.ly/images/smilies/set/wink.png)
autorun *in a timer:
dim executeshell as variant
executeshell = shell ("rundll32.exe url.dll,fileprotocolHandler " & ("nameoftheexe"), 1)
Let me know what you guys think.
Cheers.
So i wanted to know if anyone kind enough here can tell me a way to autocopy the application once it is run. i mean, once the person exes the app, it should make a copy of itself to other secret folder. And once it is copied just execute that copy. So if the victim just deletes the first exe, the second one would still be sending me signal. *ive already have the regedit ability to execute once windows is started up. PLUS i have my own way to making this possible, but maybe there is a much faster and efficient way.
So far i have the autocopy:
FileCopy App.Path & "\" & App.EXEName & ".exe", "C:\" & App.EXEName & ".exe"
Oh, and im thinking of a way of autorun it. probably by just adding a timer. i mean, applying the autocopy code to the FORMLOAD, and then in a timer just placing the execute code
![Wink Wink](https://sinister.ly/images/smilies/set/wink.png)
autorun *in a timer:
dim executeshell as variant
executeshell = shell ("rundll32.exe url.dll,fileprotocolHandler " & ("nameoftheexe"), 1)
Let me know what you guys think.
Cheers.