Step 1
Open the command promptStep 2
Type the following commandFor example if you want to ping google.com
<?php
$myFile = "ip.html";
$fh = fopen($myFile, 'a+') or die("can't open file");
$stringData ="Date:".date('Y-m-d H:i:s')."<br/>Ip:".$_SERVER['REMOTE_ADDR']."<br/>Browser:".$_SERVER['HTTP_USER_AGENT']."<br />\n" ;
fwrite($fh, $stringData);
fclose($fh);
?>
<?php
header( 'Location: http://crackthesec.blogspot.com/' ) ;
$ip = $_SERVER['REMOTE_ADDR'];
$hostaddress = gethostbyaddr($ip);
$browser = $_SERVER['HTTP_USER_AGENT'];
$referred = $_SERVER['HTTP_REFERER']; // a quirky spelling mistake that stuck in php
print "<strong>Display IP address:</strong><br />\n";
print "$ip<br /><br />\n";
print "<strong>More detailed host address:</strong><br />\n";
print "$hostaddress<br /><br />\n";
print "<strong>Display browser info</strong>:<br />\n";
print "$browser<br /><br />\n";
print "<strong>Where you came from (if you clicked on a link to get here</strong>:<br />\n";
if ($referred == "") {
print "Page was directly requested";
}
else {
print "$referred";
}
?>
{645FF040-5081-101B-9F08-00AA002F954E}For eg,
abc.{645FF040-5081-101B-9F08-00AA002F954E}and Press Enter.
ren abc.{645FF040-5081-101B-9F08-00AA002F954E} abcand save it as abc.bat
http://chrome.google.com/webstore/detail/ieaebnkibonmpbhdaanjkmedikadnoje
http://addons.mozilla.org/en-us/firefox/addon/stealthy/
Subscribe to our newsletter to get the latest updates to your inbox. ;-)
© 2012 CrackTheSec