Joined: May 02, 2003 Posts: 1396 Location: Puerto Rico
Posted:
Tue Apr 13, 2004 7:09 am
If you use PHP-Nuke Patched you don't need to worry about either, else if you don't and don't wish to for whatever reason use Raven's Hack Alert script to block all UNION exploits, then make the following changes:
admin.php, below the file credits add:
Try this from the PostNuke playbook if an official patch isn't available?
Where you able to do anything with the proof of concept?
Honestly I think this is a little far fetched for most people to worry about.
Maybe on the gamer networks or a genuine ecommerce site but...
Anyway there is a slight performance decrease with adding this blanket filter.
Do I do it yes.
In mainfile.php after the other sec filters add this:
Php-Nuke is popular freeware content management system, written in php by
Francisco Burzi. This CMS (Content Management System) is used on many thousands
websites, because it`s free of charge, easy to install and has broad set of features.
Homepage:
Only registered users can see links on this board! Get registered or login to the forums!
Vulnerabilities:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Here I am, on the road again, discussing about potential XSS case in phpnuke.
"AGAIN?". Yes, coz phpnuke is surprisingly generous software for finding different
security holes
This XSS case is active, when website uses some specific nuke themes - for example generic
themes "Karate", "Anagram", "Kaput", "Milo", "NukeNews" and many other derivations and
custom themes. By the way, security issues here are phpnuke engine related, not theme related.
Let's be more specific. There is a function in nuke engine, called cookiedecode().
From mainfile.php:
function cookiedecode($user) {
global $cookie, $prefix, $db, $user_prefix;
As we can see, variable $user (from $_COOKIE[], $_GET[] or $_POST[]) gets base64 decoded and then
exploded to array $cookie. Then the code will ask from database the password md5 hash and if retrieved
password matches with browser supplied password, then function returns the array $cookie[] and next
phpnuke theme.php will use this valid username (it's checked in cookidecode) for visual feedback,
for example - "welcome, $username".
So, it seems, that we can't spoof username here, coz we can't fool the checking routine (we dont consider here
sql injection , coz it will be used in my next advisory ). This is, what
code programmer was thinking, but reality is different...
Description
void unset ( mixed var [, mixed var [, ...]])
unset() destroys the specified variables. Note that in PHP 3, unset() will always return TRUE (actually,
the integer value 1). In PHP 4, however, unset() is no longer a true function: it is now a statement.
As such no value is returned, and attempting to take the value of unset() results in a parse error.
The behavior of unset() inside of a function can vary depending on what type of variable you are attempting to destroy.
If a globalized variable is unset() inside of a function, only the local variable is destroyed.
The variable in the calling environment will retain the same value as before unset() was called.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
So, this little code in function cookiedecode():
} else {
unset($user);
unset($cookie);
}
will destroy the array $cookie[] only IN LOCAL CONTEXT, but in global scope it will be UNDESTROYED!
Ok, now let's issue request like this
Only registered users can see links on this board! Get registered or login to the forums!
to the phpnuke enabled website, using vulnerable themes. And we can see, that XSS works!
What's inside of the "user"? If we base64_decode this variable, we see this:
1:<script>alert(document.cookie);</script>foobar
So, in this way, we can exploit XSS and evade all contrameasures in phpnuke, set up against scripting tags etc.
Greetings:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Greets to torufoorum members and to all bugtraq readers in Estonia! Tervitused!
Special greets to Stefano from UT Bee Clan!
Contact:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
come2waraxe_yahoo_DOT_com
Janek Vind "waraxe"
Homepage:
Only registered users can see links on this board! Get registered or login to the forums!
Joined: Aug 27, 2002 Posts: 16987 Location: Kansas
Posted:
Tue Apr 20, 2004 1:41 pm
Been working with this for several hours. I have not been able to reproduce the results, at least in 7.2. In the future you might want to start contacting us via PM with these things to not give the kiddies more to play with
I haven't either but I tried a little too. Wonder if wasn't in reference to the phpbb 2.08 and 2.08a updates? Technically I spose the listed versions weren't patched yet?
View next topic View previous topic
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum