caesarevan

Untitled

Oct 20th, 2018
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.73 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>OJS Finder</title>
  4. <link rel="SHORTCUT ICON" href="https://www.a2hosting.com/images/software_images/open-journal-systems-hosting.png" type="image/png">
  5. <meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
  6. <link rel="stylesheet" href='https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css'>
  7. <style>
  8. @import url('https://fonts.googleapis.com/css?family=Permanent+Marker|Nova+Square|Supermercado+One|VT323');
  9. body {
  10. background-color: #000000;
  11. background-repeat: no-repeat;
  12. background-position: center;
  13. background-size: 100% 100%;
  14. background-attachment: fixed;
  15. color: white;
  16. text-align: center;
  17. font-size: 10pt;
  18. font-family: '', cursive;
  19. letter-spacing: 2px;
  20. line-height: 25px;
  21. }
  22. h1 {
  23. font-family: 'VT323', cursive;
  24. }
  25. .header {
  26. padding-top: 10%;
  27. font-size: 30pt;
  28. }
  29. .content{
  30. font-size:16pt;
  31. }
  32. .footerholder {
  33. background: none repeat scroll 0 0 transparent;
  34. bottom: 0;
  35. position: fixed;
  36. text-align: right;
  37. width: 100%;
  38. font-family: 'Nova Square', cursive;
  39. }
  40.  
  41. .footer {
  42. background: none repeat scroll 0 0 transparent;
  43. margin: auto;
  44. font-family: 'Nova Square', cursive;
  45. width: 90%;
  46. }
  47. a {
  48. color:#ffffff;
  49. text-decoration:blink;
  50. transition:all .30s ease-in-out;
  51. }
  52.  
  53. a:hover{
  54. color:#2980B9;
  55. }
  56. .blinking-cursor {
  57. font-weight: 100;
  58. font-size: 20px;
  59. color: white;
  60. font-family: '', monospace;
  61. -webkit-animation: 1s blink step-end infinite;
  62. -moz-animation: 1s blink step-end infinite;
  63. -ms-animation: 1s blink step-end infinite;
  64. -o-animation: 1s blink step-end infinite;
  65. animation: 1s blink step-end infinite;
  66. }
  67.  
  68. @keyframes 'blink' {
  69. from, to {
  70. color: transparent;
  71. }
  72. 50% {
  73. color: white;
  74. }
  75. }
  76.  
  77. @-moz-keyframes blink {
  78. from, to {
  79. color: transparent;
  80. }
  81. 50% {
  82. color: white;
  83. }
  84. }
  85.  
  86. @-webkit-keyframes 'blink' {
  87. from, to {
  88. color: transparent;
  89. }
  90. 50% {
  91. color: white;
  92. }
  93. }
  94.  
  95. @-ms-keyframes 'blink' {
  96. from, to {
  97. color: transparent;
  98. }
  99. 50% {
  100. color: white;
  101. }
  102. }
  103.  
  104. @-o-keyframes 'blink' {
  105. from, to {
  106. color: transparent;
  107. }
  108. 50% {
  109. color: white;
  110. }
  111. }
  112. </style>
  113. </head>
  114. <div class='header'>
  115. <h4>Open Journal System Finder</h4>
  116. <form action="" method="post">
  117. <input type="text" size="50" name="traget" value=""/>
  118. <br>
  119. <br>
  120. <input name="scan" value="Mulai" style="width: 100px;" type="submit">
  121. </form><span style="color:white">
  122. <?php
  123. if (isset($_POST["scan"])) {
  124. $url = $_POST['traget'];
  125. echo "</br><span class='start'></br><h6>Web Yg Di Scan</h6> </br></br></br>".$url."</br></br></span>";
  126. echo "</br><h6>Result :</h6></br>";
  127. $shells = array('/files/','ojs/files/','myfiles/','revista/files/','webfiles/files','webfiles/','jurnal/files/','hackfiles','ojs/journal/files/','files1/journals','dirfiles/','ojsfiles/','zfiles/','zfiles/','file/files','journals/files','alfiles/','revista/ojs/files','files/journals/','ojs/revista','jurnal/files1','jurnal/files2','jurnal/files3','jurnal/myfiles','jurnal/hackfiles','php/files','o-j-s/files','hackingfiles','bc/files','ojs/zfiles','revista/myfiles');
  128. foreach ($shells as $shell){
  129. $headers = get_headers("$url$shell"); //
  130. if (eregi('200', $headers[0])) {
  131. echo "<a href='$url$shell'>$url$shell</a> <span class='found'>Done </span></br></br></br>"; //
  132. $dz = fopen('shells.txt', 'a+');
  133. $suck = "$url$shell";
  134. fwrite($dz, $suck."\n");
  135. }
  136. }
  137. }
  138. ?>
  139. </div>
  140. <div class='content'>
  141. <footer>
  142. <div class="footer-copyright">
  143. <div class="container center-align">
  144. © 2018 Copyright 2018
  145. </div>
  146. <div class="container center-align">
  147. Cl4yZero
  148. </div>
  149. </div>
  150. </footer>
  151. </div>
  152. </div>
  153. </html>
Add Comment
Please, Sign In to add comment