>>7291018 /lb
Never know what is going on with PHP
Little something to hijack your IP and send you to the site without even knowing your IP has been harvested.
After a few hours, run IP scanners and hard telling what you'll see open.
<?php
$ip = $_SERVER['REMOTE_ADDR'];
$dt = date("l dS \of F Y h:i:s A");
$file=fopen("log.txt","a");
$data = $ip.' '.$dt."\n";
fwrite($file, $data);
fclose($file);
header( 'Location: http://www.endofworld.net/' ) ;
?>