Key logger wont record key strokes without console

Posted by Daniel Gopar on Stack Overflow See other posts from Stack Overflow or by Daniel Gopar
Published on 2013-11-07T03:10:45Z Indexed on 2013/11/07 3:54 UTC
Read the original article Hit count: 158

Filed under:
|
|
|
|

I created a small basic key logger in C++. For some reason when I compile and run the program with the console displayed, it will record every key stroke I make in whatever program I am using such as a browser and store it in a text file. However when I make it so that it WON'T display a console window, it will not record anything and it's just a process in the background doing nothing. Here is the link to my code: http://pastebin.com/4wqQyLJ9 The function that is giving me trouble with hiding the console, is the Stealth() function. Any suggestions, tips or hints will be helpful. Thanks.

© Stack Overflow or respective owner

Related posts about c++

Related posts about logging