Advertisement
zeeshan-haxor-zesn

Domains on server / reverse ip by Zeeshan Haxor ZeSn

Nov 2nd, 2015
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. Domains on server / reverse ip by Zeeshan Haxor ZeSn
  2. #Cyber TeamRox
  3.  
  4. <html>
  5. <title>Domain Checker By Zeeshan Haxor</title>
  6. <link href='http://fonts.googleapis.com/css?family=Iceland' rel='stylesheet' type='text/css'>
  7. <center>
  8. <font face="iceland" color="Red" size="30px">Domain Checker By Zeeshan Haxor</font>
  9. </center><br>
  10. <form>
  11. <center>
  12.  
  13. <input type='text' size='60' value='ZeeshanHaxor.com' name='remoteAddress' />&nbsp;<input type='submit' value='&nbsp;&check;&nbsp;'>
  14. </form></center>
  15. <style>
  16.  
  17. tr
  18. {
  19.  
  20. color: #ffffff;
  21. }
  22.  
  23. .input:hover, .inputzbut:hover{
  24. border-bottom:1px solid #00eaff;
  25. border-top:1px solid #00eaff;
  26. }
  27.  
  28. #oops{ padding: 2px; border: 1px solid #222222; box-shadow: 0px 0px 3 #222222;font-family: orbitron; font-size: 11px; width:90%;}
  29.  
  30.  
  31. input {padding: 2px; border: 2px solid #0790ef; box-shadow: 0px 0px 3 #0790ef; color: #0790ef; text-decoration: none;color: #0790ef; text-shadow: 0px 0px 0px #0790ef; font-weight: bold}
  32. input a:hover{padding: 1px; border: 1px solid #0790df;box-shadow: 0px 0px 3 #0790df; color: #636263; text-decoration: none;color: #0790df}
  33.  
  34.  
  35. td
  36. {
  37. BORDER-RIGHT: #cccccc 1px solid;
  38. BORDER-TOP: #cccccc 1px solid;
  39. BORDER-LEFT: #cccccc 1px solid;
  40. BORDER-BOTTOM: #cccccc 1px solid;
  41. color: #cccccc;
  42. }
  43.  
  44. </style>
  45. <?php
  46.  
  47. if(isset($_GET["remoteAddress"]))
  48. {
  49. $site = $_GET["remoteAddress"];
  50. $ghost = "http://domains.yougetsignal.com/domains.php";
  51.  
  52. //Curl Function
  53. $ch = curl_init($ghost);
  54. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
  55. curl_setopt($ch, CURLOPT_POSTFIELDS, "remoteAddress=$site&ket=");
  56. curl_setopt($ch, CURLOPT_HEADER, 0);
  57. curl_setopt($ch, CURLOPT_POST, 1);
  58. $resp = curl_exec($ch);
  59. $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 ) ) ) ) ) ) ) ) ) ))));
  60. $array = explode(",,", $resp);
  61. unset($array[0]);
  62. echo "<table style='margin: 0 auto'>";
  63. foreach($array as $lnk)
  64. {
  65. print "<tr><td><a style=\"color:#0f0;font-weight:bold;\" href='$lnk' target=_blank>$lnk</a></td></tr>";
  66. }
  67. echo "</table>";
  68. curl_close($ch);
  69. }
  70. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement