Guest User

Untitled

a guest
Mar 28th, 2015
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. $URL = "www.yahoo.com";
  2.  
  3. $fp = fsockopen("$URL",80);
  4.  
  5. fputs($fp, "GET <a href=\"http://$URL/\" "
  6. . "title=\"http://$URL/\">http://$URL/</a> "
  7. . "HTTP/1.0\r\nReferer:www.test.it\r\n\r\n");
  8.  
  9. $data="";
  10. while (!feof($fp)) $data.=fgets($fp,64000);
  11. fclose($fp);
  12.  
  13. print $data;
Advertisement
Add Comment
Please, Sign In to add comment