Hide the Console

hehe45

New Member
Hello all, i'm new to this community, i hope i'm welcome !

I don't know if i am at the good section, if not move it to the good section !

This is just an code that hide the console ! very nice for keylogger, trojan !

I hope you like it !

First include this :

Code:
#include <windows.h>

Here is the code :

Code:
HWND hideConsole;
hideConsole = FindWindowA("ConsoleWindowClass",NULL); // Find the console window
ShowWindow(hideConsole, 0); //Hide it ! use 0 for hide it !

Sorry for my english! i'm French !

Thank,

java_coderz;
 
Back
Top