document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. ...
  2. if (isset($_SERVER[\'HTTP_X_FORWARDED_FOR\'])) {
  3. $whois ="whois " . $_SERVER[\'HTTP_X_FORWARDED_FOR\'] ." | grep netname";
  4. }
  5. else{
  6. $whois ="whois " . $_SERVER[\'REMOTE_ADDR\'] ." | grep netname";
  7. }
  8.  
  9. $isp_user = exec($whois);
  10. ...
');