Author Topic: Keylogger  (Read 4570 times)

0 Members and 1 Guest are viewing this topic.

Offline dsman

  • /dev/null
  • *
  • Posts: 7
  • Cookies: 0
    • View Profile
Keylogger
« 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!
   

Offline bubzuru

  • Knight
  • **
  • Posts: 395
  • Cookies: 21
  • everything is contained in the data
    • View Profile
    • New School Tools
Re: Keylogger
« Reply #1 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()
Damm it feels good to be gangsta
http://bubzuru.comule.com

Offline techb

  • Soy Sauce Feeler
  • Global Moderator
  • King
  • *
  • Posts: 2350
  • Cookies: 345
  • Aliens do in fact wear hats.
    • View Profile
    • github
Re: Keylogger
« Reply #2 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).
>>>import this
-----------------------------

Z3R0

  • Guest
Re: Keylogger
« Reply #3 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.

Offline dsman

  • /dev/null
  • *
  • Posts: 7
  • Cookies: 0
    • View Profile
Re: Keylogger
« Reply #4 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!

Offline techb

  • Soy Sauce Feeler
  • Global Moderator
  • King
  • *
  • Posts: 2350
  • Cookies: 345
  • Aliens do in fact wear hats.
    • View Profile
    • github
Re: Keylogger
« Reply #5 on: July 26, 2012, 10:35:16 pm »
You can do hooking in python too, but stick with C/++
>>>import this
-----------------------------

Offline dsman

  • /dev/null
  • *
  • Posts: 7
  • Cookies: 0
    • View Profile
Re: Keylogger
« Reply #6 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?

Offline bubzuru

  • Knight
  • **
  • Posts: 395
  • Cookies: 21
  • everything is contained in the data
    • View Profile
    • New School Tools
Re: Keylogger
« Reply #7 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
Damm it feels good to be gangsta
http://bubzuru.comule.com

Offline Kulverstukas

  • Administrator
  • Zeus
  • *
  • Posts: 6627
  • Cookies: 542
  • Fascist dictator
    • View Profile
    • My blog
Re: Keylogger
« Reply #8 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.

Offline techb

  • Soy Sauce Feeler
  • Global Moderator
  • King
  • *
  • Posts: 2350
  • Cookies: 345
  • Aliens do in fact wear hats.
    • View Profile
    • github
Re: Keylogger
« Reply #9 on: July 26, 2012, 11:07:26 pm »
I have that feeling also kulverstukas. I'm think he wants something point and click.
>>>import this
-----------------------------

Offline dsman

  • /dev/null
  • *
  • Posts: 7
  • Cookies: 0
    • View Profile
Re: Keylogger
« Reply #10 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!

Offline Ragehottie

  • Knight
  • **
  • Posts: 313
  • Cookies: -9
  • Hack to learn, not learn to hack.
    • View Profile
Re: Keylogger
« Reply #11 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.
Blog: rexmckinnon.tumblr.com

Offline bubzuru

  • Knight
  • **
  • Posts: 395
  • Cookies: 21
  • everything is contained in the data
    • View Profile
    • New School Tools
Re: Keylogger
« Reply #12 on: July 27, 2012, 12:27:27 am »
all this talk is of key logging is making me wana code



Damm it feels good to be gangsta
http://bubzuru.comule.com

Offline Ragehottie

  • Knight
  • **
  • Posts: 313
  • Cookies: -9
  • Hack to learn, not learn to hack.
    • View Profile
Re: Keylogger
« Reply #13 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.
Blog: rexmckinnon.tumblr.com

Offline bubzuru

  • Knight
  • **
  • Posts: 395
  • Cookies: 21
  • everything is contained in the data
    • View Profile
    • New School Tools
Re: Keylogger
« Reply #14 on: July 27, 2012, 03:11:30 am »
and we have a base
considering this is in projects now ... what shall we call it




System Wide Mouse/Keyboard hooking

i attatched the download if you wana test
Damm it feels good to be gangsta
http://bubzuru.comule.com