Quote:
|
Originally Posted by Tony Finland
Does anyone know how to program the keylogger to send logs stright to email address?
|
You can just use WinSock.
Have the program bind to a port, and listen(); for connect(); from a client. Once it gets an connect(); call from the client, have the keylogger accept(); the connect and send the log files to the client and at the same time clearing it's own files. Then the client can just have the data he recv(); and write it to his own file.
I would also like to note to everybody: this program is useless for 'omg h4x0ring' a person or whatever, because it's not initiating a Global hook, which are normally much more efficient for that stuff. If he linked his hook procedure to a seperate DLL and had it called using GetProcAddress(); followed by actually setting a hook with it using SetWindowsHookEx(); then it'd be be better suited for such a situation.