Sinisterly
C++ How to make a basic keylogger - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Coding (https://sinister.ly/Forum-Coding)
+--- Forum: C, C++, & Obj-C (https://sinister.ly/Forum-C-C-Obj-C)
+--- Thread: C++ How to make a basic keylogger (/Thread-C-How-to-make-a-basic-keylogger)

Pages: 1 2


RE: C++ How to make a basic keylogger - Mushroom Face - 05-07-2014

(04-13-2014, 07:41 AM)xornull Wrote: This is also very bad because it keeps spamming the CPU for the same function, and it may also miss some keystrokes,
plus it's easy as fuck to detect, what other thing will a program do if all it's doing is calling GetAsyncKeyState...

Agreed, if you want a good keylogger. You'd have to bypass the Window's kernel and receive they keys as the operating system does. Tricking the operating system into thinking its doing its own logging.


RE: C++ How to make a basic keylogger - cr33pyguy - 05-07-2014

(04-12-2014, 08:33 PM)xornull Wrote: I doubt anyone here really doesn't know this though.

I don't. But then again I've never learned/tried C++.

OP: Nice tut. Keep sharing. (just remember to credit if you take some of it from others)