Advertisement
Mac_Dhuhri

Mass DNS Viewer V.1

Mar 8th, 2019
493
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.05 KB | None | 0 0
  1.     <link href='http://fonts.googleapis.com/css?family=Share+Tech+Mono' rel='stylesheet' type='text/css'>
  2. <style>
  3. body {background:url('https://phandroid.com/wp-content/uploads/2014/06/tools.jpg') no-repeat fixed;
  4.    -webkit-background-size: 100% 100%;
  5.    -moz-background-size: 100% 100%;
  6.    -o-background-size: 100% 100%;
  7.    background-size: 100% 100%;;color:#fff;font-family: 'Share Tech Mono';margin-left:5%;
  8.         margin-right:5%;}
  9. input[type=text] , input[type=file] , input[type=password] {background:none;border-top:none;border-left:none;border-right:none;color: #02BC8C ;border-bottom:2px solid #02BC8C;font-family: 'Share Tech Mono';margin:6px;padding:6px; -moz-border-radius: 7px; border-radius: 7px;width:35%;}
  10. textarea {
  11.     background:none;border-top:none;border-left:none;border-right:none;color: #02BC8C ;border:2px solid #02BC8C;font-family: 'Share Tech Mono';margin:6px;padding:6px; -moz-border-radius: 7px; border-radius: 7px;
  12.     width:40%;
  13.     height:150px;
  14. }
  15. input[type=submit] {background:#02BC8C;color:white;border:1px solid #02BC8C;font-family: 'Share Tech Mono';padding:2px 8px; -moz-border-radius: 10px; border-radius: 10px;width:35%;}
  16. .fak {background: #02BC8C ;color:#fff;border:1px solid #02BC8C;font-family: 'Share Tech Mono';padding:2px 8px; -moz-border-radius: 7px; border-radius: 7px;width:15%;}
  17. a {text-decoration:none;color:#02BC8C}
  18.     #tabnet{
  19.         margin-left:15px auto 0 auto;
  20.         margin-right:15px auto 0 auto;
  21.         border: 1px solid #02BC8C;
  22.         width: 100%;
  23.  }
  24.     th {
  25.         background: #02BC8C;
  26.         color:#2F302F;
  27.     }
  28.     td {
  29.         border-bottom: 1px solid #02BC8C;
  30.         padding: 3px;
  31.     }
  32.     #c {
  33.         text-align: center;
  34.     }
  35. </style>
  36. <title>DNS Viewer</title>
  37. <table width=100% height=100%>
  38. <td align="center">
  39. <b>
  40. <center><font new size="7">EXPLOIT KITA ORG</font><br>Sharing [IT] Exploit<br><br><font color="#02BC8C">null</font>@localhost:/<font color="#02BC8C">null</font># id
  41. uid=0(<font color="#02BC8C">null</font>) gid=0(<font color="#02BC8C">null</font>) groups=0(<font color="#02BC8C">null</font>)
  42. <br><br>
  43. <form action="" method="POST">
  44. <textarea name="text" placeholder="www.domain.com
  45. don't use http://"></textarea>
  46. <br><input type="submit" name="zone" value="Check All"></form>
  47. <?php
  48. // coded by ustadcage_48 & html404
  49. $sedd = explode("\r\n",$_POST["text"]);
  50. if($_POST["text"]){
  51. echo '<table id="tabnet"><tr><th>Hostname   </th><th>Type</th><th>  TTL </th><th>Priority</th><th>Content</th></tr>';
  52. foreach ($sedd as $site){
  53. $sed = file_get_contents("https://who.is/dns/".$site);
  54.  
  55. preg_match_all('/<tr><td>(.*?)<\/td><td>(.*?)<\/td><td>(.*?)<\/td><td>(.*?)<\/td><td>(.*?)<\/td><\/tr>/',$sed,$a);
  56. $hitung = count($a[0]);
  57. $mulai = 0;
  58. while ($mulai < $hitung){
  59.     echo "<tr><td>".$a[1][$mulai]."</td><td><center>".$a[2][$mulai]."</center></td><td><center>".$a[3][$mulai]."</center></td><td><center>".$a[4][$mulai]."</center></td><td>".$a[5][$mulai]."</td></tr>";
  60.     $mulai++;
  61. }
  62. echo "<tr><th></th><th></th><th></th><th></th><th></th></tr>";
  63. echo "<tr><th></th><th></th><th></th><th></th><th></th></tr>";
  64. }
  65. echo "</table>";
  66. }
  67. ?>
  68. <br>
  69. &copy; Copyright 2019-/-Exploit-kita
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement