kEYLOGGER
-
hi do any one know how to code keylogger in c++?:confused:
-
hi do any one know how to code keylogger in c++?:confused:
Are you looking for code that will work in windows or any system that has a C++ compiler? Is MFC ok? John
-
hi do any one know how to code keylogger in c++?:confused:
You need to use
SetWindowsHookExA
. Have a look in the MSDN for it. You can setup Mouse and Keyboard hooks. You pass it the type of Hook you require and a callback function... You code the Callback function and in there you can log all keyboard strokes. Regards, Brian Dela :-) -
Are you looking for code that will work in windows or any system that has a C++ compiler? Is MFC ok? John
thanks John :-D MFC will do yes looking for code ;)
-
You need to use
SetWindowsHookExA
. Have a look in the MSDN for it. You can setup Mouse and Keyboard hooks. You pass it the type of Hook you require and a callback function... You code the Callback function and in there you can log all keyboard strokes. Regards, Brian Dela :-)thanks Brian Delahunty what about the windows in which keys are pressed??:confused: