Ribang

Checker Shells

Jun 6th, 2018
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. <title>Checker Shells </title>
  2. <style>
  3. body {
  4. font-family: Verdana, monospace, sans-serif;
  5. font-size: 12px;
  6.  
  7. text-align: justify;
  8. min-height: 800px;
  9. }
  10. .veriler {
  11. width: 300px;
  12. padding: 20px;
  13.  
  14. position: relative;
  15. margin: auto;
  16. }
  17. </style>
  18.  
  19. <div class="veriler">
  20. <form action="" method="POST">
  21.  
  22. <textarea style="width: 300px; height: 174px;" name="shell" rows="10" cols="40"></textarea>
  23. <input type="submit" name="ok" style="width:300px;" value="checker">
  24.  
  25. </form>
  26.  
  27.  
  28. <?php
  29.  
  30. # Coded By RxR HaCkEr <3
  31.  
  32.  
  33. function checkers()
  34. {
  35.  
  36. if(isset($_POST['ok']))
  37. {
  38. $name = $_POST['shell'];
  39.  
  40.  
  41. echo '<h5><font color="greey"> check : Work.txt</font></h5><h5> <font color="red">check : 404.txt </font></h5>';
  42.  
  43. $list=explode("\r\n", $name);
  44.  
  45. foreach ($list as $url)
  46. {
  47. if(stristr($url, 'http://'))
  48. {
  49.  
  50. $ch=file_get_contents($url);
  51.  
  52. if(stristr($ch, 'Uname:'))
  53. {
  54. file_put_contents("work.txt", $url."\r\n" , FILE_APPEND);
  55. echo '<h5> <font color="greey"> '.$url.'</font></h5>';
  56.  
  57. }
  58. else
  59. {
  60.  
  61. file_put_contents("404.txt", $url."\r\n" , FILE_APPEND);
  62. echo '<h5><font color="red">'.$url.'</font></h5>';
  63.  
  64.  
  65.  
  66.  
  67. }
  68. }
  69.  
  70. else
  71. {
  72.  
  73. echo "add http:// on your list , ";
  74. }
  75.  
  76. }
  77. }
  78.  
  79.  
  80. }
  81.  
  82. checkers();
  83.  
  84.  
  85.  
  86. ?>
Add Comment
Please, Sign In to add comment