Topic: Potential Security Flaw in includes/common.php
If a user accesses includes/common.php directly they will see a reference to $pun_root in an include. If register globals is On, this will allow an attacker to access other php scripts with the name config.php. Further more, on some versions of PHP (I believe <= 4.1.0) a %0 can be used to put a NULL in a GET parameter, so any file could be accessed. For example:
pun_root=../../etc/passwd%0
Could lead to etc/passwd being read (of course, you need the correct amount of directory escapes and permissions to read the passwd file)
For a lot of people, this vulnerablity should not cause much threat (none if register globals is off). That is why I decided it would be okay to post it in the public forum (also, could not find appropiate contact information to disclose privately). However, for a small minority it could cause a problem.
Good Luck