Advertisement
dkadox

bypass

Jan 30th, 2018
513
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Rev Ip </title>
  4. <style type="text/css">
  5. body{
  6. background-color: black;
  7. font-family: Times New Roman;
  8. color: red;
  9. text-shadow: 0px 0px 5px;
  10. font-size: 20px;
  11. }
  12. form{
  13. color:aqua;
  14. </style>
  15. </head>
  16. <body>
  17. <form action ="" method="POST" >
  18. IP : <input type="text" name ="ip"><br />
  19. Path : <input type="text" name ="admin"><br />
  20. <input type="submit" name="submit" value ="Submit">
  21. </form>
  22. <br />
  23. </body>
  24. </html>
  25. // dKad0x - Tools // <br />
  26. // Website Bypass Vulnerable //<br />
  27. // Auto Scan Target // <br />
  28. // Special Thanks - p4kl0nc4t //
  29. <br />
  30. <?php
  31. @set_time_limit(0);
  32. @error_reporting(0);
  33. $ip = $_POST['ip'];
  34. $admin = $_POST['admin'];
  35. $server = gethostbyname($ip);
  36. $revip = file_get_contents("https://api.hackertarget.com/reverseiplookup/?q={$server}");
  37. $array_revip = explode("\n", $revip);
  38. foreach ($array_revip as $domain){
  39. $site = "http://{$domain}";
  40. $list = explode("\n", $admin);
  41. foreach ($list as $admins){
  42. $getpath = get_headers($site.$admins);
  43. if (preg_match("/200/m", $getpath[0])){
  44. echo "<pre>";
  45. echo "Ada - [$site$admins]";
  46. }else{
  47. echo "<pre>";
  48. echo "Tidak Vuln";
  49. }
  50. }
  51. }
  52. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement