elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.
 
Inicio Ayuda Buscar Ingresar Registrarse
27 Mayo 2012, 21:06  


Tema destacado: ¿Eres nuevo? ¿Tienes dudas acerca del funcionamiento de la comunidad? Lee las Reglas Generales

+  Foro de elhacker.net
|-+  Seguridad Informática
| |-+  Hacking Avanzado
| | |-+  Hacking Linux/Unix (Moderadores: kamsky, TRICKY, berz3k)
| | | |-+  Keylogger para linux??
0 Usuarios y 1 Visitante están viendo este tema.
Páginas: [1] Ir Abajo Respuesta Imprimir
Autor Tema: Keylogger para linux??  (Leído 6,849 veces)
deadlock

Desconectado Desconectado

Mensajes: 11


Ver Perfil
Keylogger para linux??
« en: 5 Mayo 2006, 00:51 »

Buenas, quiero instalar un keylogger en mi PC, pero solamente he encontrado lkl, y los keymaps que tiene son it, fr, dvorak i us. Y no he encontrado por todo internet de donde puedo sacar uno en español...

Sabeis de donde puedo conseguirlo? O en su defecto... Otro keylogger que pueda usar??

Saludos y gracias!!!


En línea
_Xerks_

Desconectado Desconectado

Mensajes: 35


Díselo a mi brillante culo metálico.


Ver Perfil
Re: Keylogger para linux??
« Respuesta #1 en: 11 Mayo 2006, 17:44 »

Hola deadlock, ahí va uno...

Código:
# $Id: RecordKeys.pm,v 1.2 2005/09/21 04:54:10 short Exp $
# Hash tied to record all the accessed keys.
# Copyright (C) 2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; exactly version 2 of June 1991 is required
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA


package My::Hash::RecordKeys;
our $VERSION=do { my @r=(q$Revision: 1.2 $=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
our $CVS_ID=q$Id: RecordKeys.pm,v 1.2 2005/09/21 04:54:10 short Exp $;
use strict;
use warnings;
use My::Web; # for &Wrequire
Wrequire 'My::Hash';
our @ISA=qw(My::Hash);
use Carp qw(cluck confess);


sub TIEHASH($$)
{
my($class,$parent)=@_;

my $self=$class->SUPER::TIEHASH($parent);
$self->{"keyshash"}={};
return $self;
}

# Call as: my @accessed=tied(%$ref)->accessed();
sub accessed($)
{
my($self)=@_;

return sort keys(%{$self->{"keyshash"}})
}

sub STORE($$$)
{
my($this,$key,$value)=@_;

$this->{"keyshash"}{$key}=1;
return $this->pass("STORE",$key,$value);
}

sub FETCH($$)
{
my($this,$key)=@_;

$this->{"keyshash"}{$key}=1;
return $this->pass("FETCH",$key);
}

sub FIRSTKEY($)
{
my($this)=@_;

my $a=keys(%{$this->{"parent"}});
return $this->NEXTKEY($this,undef());
}

sub NEXTKEY($$)
{
my($this,$lastkey)=@_;

cluck "TODO: Enumeration may not be expected.";
for (;;) {
my $key=each(%{$this->{"parent"}});
return if !defined $key;
$this->{"keyshash"}{$key}=1;
return $key
}
}

sub EXISTS($$)
{
my($this,$key)=@_;

$this->{"keyshash"}{$key}=1;
return $this->pass("EXISTS",$key);
}

sub DELETE($$)
{
my($this,$key)=@_;

$this->{"keyshash"}{$key}=1;
return $this->pass("DELETE",$key);
}

sub CLEAR($)
{
my($this)=@_;

confess "TODO: Not implementable.";
}

sub SCALAR
{
my($this)=@_;

confess "TODO: Not yet implemented.";
}

1;


Un salu2.


En línea
Páginas: [1] Ir Arriba Respuesta Imprimir 

Ir a:  

Mensajes similares
Asunto Iniciado por Respuestas Vistas Último mensaje
Keylogger para linux (Solucionado)
Análisis y Diseño de Malware
moikano→@ 3 4,917 Último mensaje 30 Enero 2011, 16:53
por juanla
Powered by SMF 1.1.16 | SMF © 2006-2008, Simple Machines