View Single Post
Old Mar 20th, 2005, 10:34 AM   #23
Mad_guy
Hobbyist Programmer
 
Mad_guy's Avatar
 
Join Date: Oct 2004
Location: Sandstorm, Techno Club
Posts: 239
Rep Power: 5 Mad_guy is on a distinguished road
Send a message via AIM to Mad_guy Send a message via MSN to Mad_guy
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.

Last edited by Mad_guy; Mar 20th, 2005 at 6:03 PM.
Mad_guy is offline   Reply With Quote