Results 1 to 5 of 5

Thread: Which language can make a perfect keylogger ??

  1. #1
    Senior Member
    Join Date
    Sep 2001
    Posts
    535

    Cool Which language can make a perfect keylogger ??

    Hello All,
    When i see all the free keyloggers which are avaliable on the net sometime i wonder which can be the best language to code a good, complete, perfect keylogger ?
    I have come across keyloggers which logs almost every action done using the keyboard and it also logs applications opend using the mouse click.

    I myself tried writing my own keylogger in C++ but was not able to make it that effective.

    Hence just wanna know which can be the best language to code a perfect key logger ?


    Thanks.

    In.
    A laptop, internet connection and beer.

  2. #2
    Member
    Join Date
    Feb 2002
    Posts
    84
    Which OS are you using, in Windows you can use almost every language
    together with the WinAPI's. I once wrote a keylogger with Delphi but you
    can also use VC++ (or other languages).
    [shadow]OpenGL rules the game[/shadow]http://www.AntiOnline.com/sig.php?imageid=499

  3. #3
    Senior Member nihil's Avatar
    Join Date
    Jul 2003
    Location
    United Kingdom: Bridlington
    Posts
    17,188
    Well, starting with the answer and going back to the question, so to speak.

    A keylogger should be small, fast, unobtrusive and efficient. The best language to support that is Assembler, in my opinion. As already suggested you can use just about any language, but ASM would be my choice.

    The main problem I have with keyloggers is they tend to collect too much information, which makes subsequent analysis a real pain. From a security viewpoint, I tend to look on them as a weapon of last resort, for that reason.

    On the otherhand, if your purpose is to create interactive, animated tutorials, user manuals etc. then you DO want to record everything.

    Cheers

  4. #4
    Senior Member
    Join Date
    Jan 2002
    Posts
    1,207
    Anything. I'd use C or C++. C may make a smaller executable.

    If you want ultimate efficiency and executable size, use C and link without the C runtime library. This is extremely inconvenient, generally speaking, but produces tiny exes (my record for exe size is 2.5k).

    In win32 it's possible to create executables in C that don't use the C runtime. That is the way to make the smallest exes.

    Even if you use the C runtime, it will usually only bloat the exe by 15k or so (depending on what functions you call, obviously)

    Slarty

  5. #5
    Senior Member
    Join Date
    Sep 2001
    Posts
    535
    Hey but if we use C, can we implement the multi-tasking which i think is essential to keep the keylogger running even when other tasks are going on ?

    was jus wondering .. or for the implementation of multi tasking we have to use C++ ?
    A laptop, internet connection and beer.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •