Results 1 to 4 of 4

Thread: My First And very basic keylogger!!

  1. #1
    Join Date
    Feb 2007
    Posts
    133
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default My First And very basic keylogger!!

    This just a basic keylogger that only records the alpabet!

  2. #2
    Join Date
    Apr 2006
    Location
    I live in NH
    Posts
    611
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Heh. Cool.

    Keep working on it man. Make sure to add a Wait(15) right before the until(false) so the CPU usage doesn't go up to 100%. And as for detecting all the letters. Try this instead.

    Code:
    procedure DetectLettersAndNumbers;
    var
      i, n : Integer;
      Str : String;
    begin
      Str := 'abcdefghijklmnopqrstuvwxyz1234567890 ';
      n := Length(Str);
      for i := 1 to n do
        if(IsKeyDown(Str[i]))then
          WriteLn(Str[i]);
    end;

  3. #3
    Join Date
    Feb 2007
    Posts
    133
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanx for suggestion its my first keylogging script!

  4. #4
    Join Date
    Dec 2006
    Location
    Banville
    Posts
    3,914
    Mentioned
    12 Post(s)
    Quoted
    98 Post(s)

    Default

    Have you looked at other people that have made them?
    The jealous temper of mankind, ever more disposed to censure than
    to praise the work of others, has constantly made the pursuit of new
    methods and systems no less perilous than the search after unknown
    lands and seas.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. KeyLogger Help
    By SKy Scripter in forum News and General
    Replies: 30
    Last Post: 10-05-2007, 11:34 AM
  2. Keylogger maybe?
    By Abyssal in forum News and General
    Replies: 1
    Last Post: 05-20-2007, 11:17 PM
  3. Plz Help i have a keylogger
    By pwnaz0r in forum News and General
    Replies: 8
    Last Post: 02-13-2007, 06:02 PM

Posting Permissions

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