Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^3: Perl Keylogger on Linux

by Anonymous Monk
on May 23, 2008 at 18:14 UTC ( [id://688186]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Perl Keylogger on Linux
in thread perl keylogger on linux

if u want to write a simple key logger in windows this would be how to do it
use feature ':5.10'; while(10) { $input = <>; #this creats an infinite loop last if $input eq "exit/n"; #exit loop when user presses exit then ent +er open(FILE, ">>log.txt"); print FILE $input; } close FILE;

Replies are listed 'Best First'.
Re^4: Perl Keylogger on Linux
by MidLifeXis (Monsignor) on May 24, 2008 at 14:41 UTC

    I have to admit, when I first saw this thread, I was thinking script kiddie. This response adds a nice touch of humor to this thread as a very naive approach.

    Thanks for the humor :)

    --MidLifeXis

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://688186]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (5)
As of 2024-04-19 17:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found