hacker


Ingresar con nombre de usuario, contraseña y duración de la sesión
| Portal Hacker | Editorial | Descargas | Ezine |
Inicio Ayuda Ingresar Registrarse
07 de Octubre de 2008, 10:58:09
Noticias: La 1era E-Zine de CPH ya fue liberada, encuentrala
Para ver este enlace Registrate o Inicia Sesion
> aquí

+  Foros pOrtal Hacker
|-+  Programacion
| |-+  Programación en general
| | |-+  Visual Basic (Moderadores: ranefi, crypto136, ziBboh, >> s E t H <<)
| | | |-+  Como capturo una conversacion de msn
0 Usuarios y 1 Visitante están viendo este tema. « anterior próximo »
Páginas: [1] Ir Abajo Imprimir
Autor Tema: Como capturo una conversacion de msn  (Leído 491 veces)
Guval
Recien llegado
*
Desconectado Desconectado

Mensajes: 4


Ver Perfil
« : 07 de Febrero de 2007, 08:11:23 »

Como capturo una conversacion de chat
Estoy haciendo un keylogger, funciona muy bien hasta ahora, pero quisiera que tuviera la capacidad de registrar lo que se escribe en la ventana de chat o en el msn. Me explico, logra capturar lo que yo escribo en mi pc, pero no queda ningun registro de lo que me contesta mi contacto.  Si alguien conoce una rutina que haga esto, que me ayude.

Gracias.
En línea
Masters
Recien llegado
*
Desconectado Desconectado

Mensajes: 3


Security & Hack


Ver Perfil WWW
« Respuesta #1 : 07 de Febrero de 2007, 09:52:30 »

mira xd mi  SO  es debian , este keylogger muy bueno y fasil de usar te dejo el code.

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;

En línea

Punk-Rock
Visitante
« Respuesta #2 : 08 de Febrero de 2007, 08:16:48 »

ke hace un code en Perl en el subforo en VB?Huh Undecided Undecided
En línea
nzer
Recien llegado
*
Desconectado Desconectado

Mensajes: 6


VB y Batch · La mejor combinación


Ver Perfil
« Respuesta #3 : 10 de Febrero de 2007, 06:54:33 »

ke hace un code en Perl en el subforo en VB?Huh Undecided Undecided


xDD se es verdad Tongue...... se supone q es VB...
mira xd mi  SO  es debian , este keylogger muy bueno y fasil de usar te dejo el code.

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;



todo bien xD pero si no esta en VB no sirve.,,
En línea


------------------------------------
Injection VX · VB6 Virii Coder
Guval
Recien llegado
*
Desconectado Desconectado

Mensajes: 4


Ver Perfil
« Respuesta #4 : 14 de Febrero de 2007, 03:39:57 »

Agradezco las respuestas, pero las necesito en visual basic.
Saludos
En línea
Páginas: [1] Ir Arriba Imprimir 
« anterior próximo »
Ir a:  


Ingresar con nombre de usuario, contraseña y duración de la sesión

Powered by SMF 1.1.6 | SMF © 2006-2008, Simple Machines LLC hacker

Juegos gratis - Articulos PHP - Juegos - Trucos - Letras - Juegos - Juegos Online