if (!session_id()) session_start();
preg_match('/^(([A-Z0-9][A-Z0-9_-]*\.)*([A-Z0-9][A-Z0-9_-]*)(\.[A-Z0-9][A-Z0-9_-]*)+)/i', $_SERVER['SERVER_NAME'], $matches);
$host = '.'.$matches[3].$matches[4];
if (!$_GET) ## start sniffer
{
$_SESSION = '';
session_destroy();
session_start();
$sid = session_id();
$_SESSION['sniffertest'] = 'session';
$oldcookie = ($_COOKIE['sniffertest'] == 'cookie' ? 1 : 0);
setcookie ('sniffertest', 'cookie', (time() + 3600), '/', $host, 0);
$url = 'http://'.$matches[0].$_SERVER['PHP_SELF']."?host=$host&oldcookie=$oldcookie&sidstart=$sid";
?>
Browser Sniffer - Start
Browser Sniffer started.
If you see this message for longer than 5 seconds, please click here.
} elseif ($_GET['clear_cookie'])
{
setcookie ('sniffertest', '', (time() - 3600), '/', $host, 0);
?>
Browser Sniffer - Clear Cookie
Browser Sniffer cookie has been cleared if possible.
If you see this message for longer than 5 seconds, please click here.
} else
{
$sid = session_id();
extract($_GET);
$report = 'Browser Sniffer Report
';
$report .= date('m/d/y g:i a').'
';
$report .= 'IP Address: '.$_SERVER['REMOTE_ADDR'].'
';
if ($click) $report .= 'You arrived here from clicking on a link, perhaps your browser does not support meta refresh
';
if ($sid)
{
$report .= 'Your session id is: '.$sid.'
';
if ($sid != $sidstart) $report .= 'Your session id is different from the last page when it was: '.$sid.'
';
else $report .= 'Your session id is the same as it was on the first page of this test
';
} else $report .= 'Session variables are not working';
$report .= 'The host being used for the cookie test is: '.$host.'
';
if ($oldcookie) $report .= 'Cookies could not be tested because an old cookie from a previous test was found
(click here to clear the old cookie and start again)
';
elseif ($_COOKIE['sniffertest'] == 'cookie') $report .= 'Your browser is accepting cookies
';
else $report .= 'Your browser is not accepting cookies
';
if ($_SESSION['sniffertest'] == 'session') $report .= 'Session variables are working
';
else $report .= 'Session variables are not working
';
?>
Browser Sniffer - Report
Start Over
echo $report; ?>
Additional JavaScript reporting:
Navigator Object Data
Version Number
Browser Version
JavaScript Version
OS
Object Detection Tests
Method Detection Tests
Screen Properties
Document Properties
Flash Detection
}
?>