EvilZone

Programming and Scripting => Projects and Discussion => Topic started by: dsman on July 26, 2012, 08:50:21 PM

Title: Keylogger
Post by: dsman on July 26, 2012, 08:50:21 PM
 Hello guys,
I want to ask you is there a way to make ardamax keylogger fud or how to create my own keylogger,which I can remote install in image.
Thank you in advance!
   
Title: Re: Keylogger
Post by: bubzuru on July 26, 2012, 09:42:55 PM
Hello guys,
I want to ask you is there a way to make ardamax keylogger fud or how to create my own keylogger,which I can remote install in image.
Thank you in advance!
   

there are ways to make any file FUD but ardamax is well known.
a good crypter should work but with a post like this i doubt you will find one

now creating your own keylogger , of course you can, if someone else has done it then im guessing you can just learn to code. take a look at GetAsyncKeyState().

http://msdn.microsoft.com/en-us/library/windows/desktop/ms646293%28v=vs.85%29.aspx

 of course keyboard hooking is a better way to go but most people usualy make there first keylogger with GetAsyncKeyState()
Title: Re: Keylogger
Post by: techb on July 26, 2012, 10:11:41 PM
there are ways to make any file FUD but ardamax is well known.
a good crypter should work but with a post like this i doubt you will find one

now creating your own keylogger , of course you can, if someone else has done it then im guessing you can just learn to code. take a look at GetAsyncKeyState().

http://msdn.microsoft.com/en-us/library/windows/desktop/ms646293%28v=vs.85%29.aspx

 of course keyboard hooking is a better way to go but most people usualy make there first keylogger with GetAsyncKeyState()

I will second the hooking. Also I believe DLL injection could work as well. You can also make hardware keyloggers too. Iirc irongeek has a video on using the Teensy (arduino clone with HID support).
Title: Re: Keylogger
Post by: Z3R0 on July 26, 2012, 10:20:44 PM
Like bubz said, asynckeystate() will be extremely easy for you to understand, but it's also incapable of capturing lower-case letters, some characters will be given back as some random utf-8 garbage, and it's terrible with punctuation marks.

Grab yourself an IDE and some c/c++ tutorials. Not a lot of people will recommend you do that, especially if you are new to programming, but you will be able to make exactly what you want, and you will have to force yourself to learn how to program better.
Title: Re: Keylogger
Post by: dsman on July 26, 2012, 10:28:15 PM
Yes,I'm new to programming so I will have to learn C/C++.I just wanted too see if there is a way to do it faster,because I'll need it these days.
Thank you for replies!
Title: Re: Keylogger
Post by: techb on July 26, 2012, 10:35:16 PM
You can do hooking in python too, but stick with C/++
Title: Re: Keylogger
Post by: dsman on July 26, 2012, 10:46:23 PM
When I make the keylogger,how I can remote install it in image.When victim click on the image my keylogger to be auto installed?
Title: Re: Keylogger
Post by: bubzuru on July 26, 2012, 10:55:09 PM
Like bubz said, asynckeystate() will be extremely easy for you to understand, but it's also incapable of capturing lower-case letters, some characters will be given back as some random utf-8 garbage, and it's terrible with punctuation marks.

Grab yourself an IDE and some c/c++ tutorials. Not a lot of people will recommend you do that, especially if you are new to programming, but you will be able to make exactly what you want, and you will have to force yourself to learn how to program better.

exactly

hooking the keyboard is not actualy that hard but you must understand a few things
For thread hooks, the hook procedure may be in an EXE file or a DLL. But for Global or System hooks, the hook procedure must reside in a DLL.

now you could use a dll with your hook in it then inject it into a process
or ... just let windows do it. take a look at SetWindowsHookEx and WH_KEYBOARD
Title: Re: Keylogger
Post by: Kulverstukas on July 26, 2012, 10:58:31 PM
Moved to "Projects and discussion".

On topic I'd like to say that I doubt OP will be willing to do what is being said here.
Title: Re: Keylogger
Post by: techb on July 26, 2012, 11:07:26 PM
I have that feeling also kulverstukas. I'm think he wants something point and click.
Title: Re: Keylogger
Post by: dsman on July 26, 2012, 11:12:04 PM
I wanted to do it fast,but as I see I have to do it with some hard work.Thank you for advices guys,this forum is cool and useful!
Title: Re: Keylogger
Post by: Ragehottie on July 26, 2012, 11:37:34 PM
Just Google around if you need one soon. I just checked on github, for every language there was over 100 search results. Keyloggers are not some elite software... almost everyone makes one when he starts to learn how to code.
Title: Re: Keylogger
Post by: bubzuru on July 27, 2012, 12:27:27 AM
all this talk is of key logging is making me wana code



Title: Re: Keylogger
Post by: Ragehottie on July 27, 2012, 03:09:17 AM
all this talk is of key logging is making me wana code

Same here. And I don't have access to a computer until Saturday night. I guess "The fundamentals of Python" and a sheet of paper are going to have to do.
Title: Re: Keylogger
Post by: bubzuru on July 27, 2012, 03:11:30 AM
and we have a base
considering this is in projects now ... what shall we call it


(http://s18.postimage.org/gx9w4wc1j/Untitled.png)

System Wide Mouse/Keyboard hooking

i attatched the download if you wana test
Title: Re: Keylogger
Post by: Ragehottie on July 27, 2012, 03:35:48 AM
What language?
Title: Re: Keylogger
Post by: bubzuru on July 27, 2012, 12:50:32 PM
c# , its mainly manegd code.

think im going to take this project on (with ProxyTool)

anyone got any ideas for features they would like ?
Title: Re: Keylogger
Post by: Kulverstukas on July 27, 2012, 01:30:00 PM
anyone got any ideas for features they would like ?
Going off topic, make a separate thread in "Projects and discussion" :)
Title: Re: Keylogger
Post by: bubzuru on July 27, 2012, 02:36:55 PM
Going off topic, make a separate thread in "Projects and discussion" :)

will do boss