Author Topic: C++ stealthy keylogger  (Read 5102 times)

0 Members and 2 Guests are viewing this topic.

Offline xthundemanx

  • /dev/null
  • *
  • Posts: 8
  • Cookies: -14
    • View Profile
C++ stealthy keylogger
« 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 ?

Offline Kulverstukas

  • Administrator
  • Zeus
  • *
  • Posts: 6627
  • Cookies: 542
  • Fascist dictator
    • View Profile
    • My blog
Re: C++ stealthy keylogger
« Reply #1 on: December 14, 2012, 08:34:54 am »
Proceed by making it as a service, without windows popping up.

Offline Grand

  • NULL
  • Posts: 2
  • Cookies: 0
    • View Profile
Re: C++ stealthy keylogger
« Reply #2 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);
}
« Last Edit: December 15, 2012, 10:29:13 am by Grand »