This just a basic keylogger that only records the alpabet!
This just a basic keylogger that only records the alpabet!
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;
thanx for suggestion its my first keylogging script!
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.
There are currently 1 users browsing this thread. (0 members and 1 guests)