Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Feb 25th, 2005, 2:45 PM   #21
Ooble
I eat cake for breakfast.
 
Ooble's Avatar
 
Join Date: Jul 2004
Location: In my box.
Posts: 4,434
Rep Power: 9 Ooble is on a distinguished road
I assume he means "raw" as in "not MFC".
__________________
Me :: You :: Them
Ooble is offline   Reply With Quote
Old Feb 26th, 2005, 2:17 PM   #22
Tony Finland
Newbie
 
Join Date: Feb 2005
Posts: 1
Rep Power: 0 Tony Finland is on a distinguished road
Does anyone know how to program the keylogger to send logs stright to email address?
Tony Finland is offline   Reply With Quote
Old Mar 20th, 2005, 9:34 AM   #23
Mad_guy
Hobbyist Programmer
 
Mad_guy's Avatar
 
Join Date: Oct 2004
Location: Sandstorm, Techno Club
Posts: 239
Rep Power: 4 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 5:03 PM.
Mad_guy is offline   Reply With Quote
Old Mar 21st, 2005, 5:32 AM   #24
lepricaun
Hobbyist Programmer
 
lepricaun's Avatar
 
Join Date: Aug 2004
Location: The Netherlands
Posts: 111
Rep Power: 5 lepricaun is on a distinguished road
Quote:
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.
why did you had to say that? let them try, i never intended it to be, otherwise i wouldn't have posted it here.

one disadvantage from the hook is that keylogger killers can stop it without any problems. it would be best to use a kernel driver if you really want to log without anyone knowing ;-)
__________________
http://www.white-scorpion.nl
lepricaun is offline   Reply With Quote
Old Mar 21st, 2005, 8:29 PM   #25
Mad_guy
Hobbyist Programmer
 
Mad_guy's Avatar
 
Join Date: Oct 2004
Location: Sandstorm, Techno Club
Posts: 239
Rep Power: 4 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 lepricaun
why did you had to say that? let them try, i never intended it to be, otherwise i wouldn't have posted it here.

one disadvantage from the hook is that keylogger killers can stop it without any problems. it would be best to use a kernel driver if you really want to log without anyone knowing ;-)
At least they're efficient for what they do.

Besides, if someone scans for keyloggers, when the program says the keylogging proggie is "OMG HOT GIRL DOWNLOADZ" they'll normally tell the program not to kill it unless it's automated.


You always disguise hacking tools has porn: never forget that.
Mad_guy is offline   Reply With Quote
Old Mar 22nd, 2005, 12:17 AM   #26
sava
Newbie
 
sava's Avatar
 
Join Date: Mar 2005
Posts: 3
Rep Power: 0 sava is on a distinguished road
Ok I tried doing the program in C++ Builder 6 and this is what i got as an errors:

[C++ Warning] KeyLogger.cpp(34): W8004 'create' is assigned a value that is never used
[C++ Error] KeyLogger.cpp(41): E2268 Call to undefined function 'sleep'
[C++ Warning] KeyLogger.cpp(198): W8066 Unreachable code
[C++ Error] KeyLogger.cpp(209): E2451 Undefined symbol 'KEY_QU'
[C++ Error] KeyLogger.cpp(209): E2121 Function call missing )

I tried correcting it but nothing...I dont get it please help! Thank you
sava is offline   Reply With Quote
Old Mar 22nd, 2005, 5:53 AM   #27
lepricaun
Hobbyist Programmer
 
lepricaun's Avatar
 
Join Date: Aug 2004
Location: The Netherlands
Posts: 111
Rep Power: 5 lepricaun is on a distinguished road
Quote:
At least they're efficient for what they do.

Besides, if someone scans for keyloggers, when the program says the keylogging proggie is "OMG HOT GIRL DOWNLOADZ" they'll normally tell the program not to kill it unless it's automated.


You always disguise hacking tools has porn: never forget that.
lol ;-)))
well then my keylogger might be of use to someone (5k1dd13) after all .

Quote:
Ok I tried doing the program in C++ Builder 6 and this is what i got as an errors:

[C++ Warning] KeyLogger.cpp(34): W8004 'create' is assigned a value that is never used
[C++ Error] KeyLogger.cpp(41): E2268 Call to undefined function 'sleep'
[C++ Warning] KeyLogger.cpp(198): W8066 Unreachable code
[C++ Error] KeyLogger.cpp(209): E2451 Undefined symbol 'KEY_QU'
[C++ Error] KeyLogger.cpp(209): E2121 Function call missing )

I tried correcting it but nothing...I dont get it please help! Thank you
reread the thread please, it is written in C not C++. if you can't recognize the language then why bother compiling it? i have a binary from this file on my site:
http://www.white-scorpion.nl/programs/programs.html
__________________
http://www.white-scorpion.nl

Last edited by lepricaun; Mar 22nd, 2005 at 5:56 AM.
lepricaun is offline   Reply With Quote
Old Mar 22nd, 2005, 7:43 AM   #28
sava
Newbie
 
sava's Avatar
 
Join Date: Mar 2005
Posts: 3
Rep Power: 0 sava is on a distinguished road
Sorry about it I was just kind of under the influance of alchohol when i was doing this. Again sorry about it
sava is offline   Reply With Quote
Old Mar 22nd, 2005, 8:21 AM   #29
Berto
Programming Guru
 
Join Date: Aug 2004
Posts: 1,022
Rep Power: 6 Berto is on a distinguished road
Send a message via AIM to Berto Send a message via MSN to Berto
lol

dont post and drink, you'll never come out alive.
Berto is offline   Reply With Quote
Old Mar 23rd, 2005, 12:29 AM   #30
lepricaun
Hobbyist Programmer
 
lepricaun's Avatar
 
Join Date: Aug 2004
Location: The Netherlands
Posts: 111
Rep Power: 5 lepricaun is on a distinguished road
Quote:
Sorry about it I was just kind of under the influance of alchohol when i was doing this. Again sorry about it
never mind and don't worry, if you want to compile the source file which is included in the zipfile you will see that it is a .c file.

Quote:
lol

dont post and drink, you'll never come out alive.
lol ;-)
__________________
http://www.white-scorpion.nl
lepricaun is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 4:04 PM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC