I would like to know if my code below is XSS safe. If there's any confusion, I'll be happy to elaborate further. I am posting this now, because I was made aware of heavy security issues in my code. I didn't even know what implications it can have, I was just providing a nice dynamic login script, without knowing of the fatal damage XSS can do. I was only ever aware of SQL Injection, and I am religiously escaped all db queries. But let's get started.
I have a login script that allows the users to dynamically access a site, they use /admin/edit.php and if they logout / login to that page, they can access it again, without having to browse to the specific location from a generic login page.
For this I use the index of the question mark to reconstruct the last part of the query, and I use the last index of a slash to find out which directory the user was trying to access.
Now also this loginscript is located in wwwdir/login/, whilst all scripts that include it can be in any location, e.g. wwwdir/shop/, wwwdir/admin/global/, etc... To be able to make the proper include, I have a script that calculate how many directories it has to go down to be able to include it. Now one assumption that it makes is that the scripts will be located in atleast two levels above the wwwdir. i.e. wwwdir//script_here.php
// $__inc_urlbase is supposed to point to /wwwdir/, so I can include the loginscript with
// $__inc_urlbase./login/login.php in any php script, located anywhere given the above criteria
$c = substr_count( $_SERVER['REQUEST_URI'], '/');
$__inc_urlbase = ''; for($i=1;$i<$c;$i++) $__inc_urlbase .= '../';
if(!isset($__inc_base)) $__inc_base = '../';
To make sure the browser remembers where they logged out from, I have the origin:
// Logout button display
echo "<a href='".$__inc_urlbase."login/login.php?action=logout&origin=".htmlspecialchars($_SERVER['REQUEST_URI'], ENT_QUOTES)."'>Logout Now</a>";
// Later, after the logout button has been clicked
echo "<META HTTP-EQUIV='refresh' CONTENT='0; url=".$_GET['origin']."'>";
And to make sure the login form redirects them to the right location I use the $_SERVER['REQUEST_URI']:
$_SESSION['target'] = htmlspecialchars( substr($_SERVER['REQUEST_URI'], lastIndexOf($_SERVER['REQUEST_URI'], '/', 0)) , ENT_QUOTES);
if(strlen($_SESSION['target']) == 0) $_SESSION['target'] = './';
echo "<form method='post' action='".$_SESSION['target']."'>";
Thank you in advance.