Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- @session_start();
- @error_reporting(0);
- @ini_set('error_log',NULL);
- @ini_set('log_errors',0);
- @ini_set('display_errors', 0);
- @set_time_limit(0);
- /*
- Name app : Admin page & Backdoor Scanner
- Author / Editor Script : AZZATSSINS CYBERSERKERS
- Email : [email protected]
- */
- echo'<html>
- <title>Backdoor & Admin Page Finder</title>
- <body bgcolor=silver><center>
- <u><i><b><h1>© AZZATSSINS CYBERSERKERS</h1>
- </b></i></u><br>
- <form method="POST">
- <font size="3" face="Orbitron" color="tan">URL <input type ="text" name="site" />
- <font size="3" face="Orbitron" color="tan">Search : <select name="search">
- <option value="xhell">Backdoor</option>
- <option value="php">Admin Page</option>
- <input type = "submit" name="submit" value="Find" />
- </form><br><br>
- ';
- if(isset($_POST['submit']) && !empty($_POST['site']))
- {
- $url = $_POST['site'];
- $search = $_POST['search'];
- switch($search)
- {
- case 'php':
- s_php($url);
- break;
- case 'xhell':
- s_xhell($url);
- break;
- default:
- echo "<br>Please select a item to search ... ";
- break;
- }
- }elseif(isset($_POST['submit']) && empty($_POST['site']))
- {
- echo "Please enter the URL currently and try again ...";
- }
- function s_php($get_url)
- {
- $pages = array('/redaktur','/webadmin','/adminweb','/web@admin','/operator','/webmaster','/web@master','/master@web','/administrator','/admin_area','/login_area','/admin','/sign_in','/login','/superuser','/log-in','/bb-admin','/wp-login.php','/admin_login','/moderator','/po-admin','/management','/manage','/phpmyadmin','/phpMyAdmin','/PMA','/phpmysql','/pmadmin','/user');
- find_admin($pages,$get_url);
- }
- function s_xhell($get_url)
- {
- $pages = array('/symlink','/sym','/dm1sym','/asu.txt','/DecW.txt','/idx_config','/idx_cgi','/wso.php','/idx.php','/dm.php','/DM5.php','/1n73ct10n.php','/shell.php','/r00t.php','/idb.php','/idb.phtml','/sabun.php','/r00t.pl','/z.php','/.php','/sh3ll.php','/xploit.php','/sa.php','/-.php','/_.php','/&.php','/$.php','/indoxploit.php','/indoXploit.php','/jembutmu.php','/jembutku.php','/indo.php','/upload.php?option=upload','/simple.php','/k3ll3d.php','/shellx.php','/kill.php','/whmkiller.php','/tools.php','/indexx.php','/shell.phtml','/shell.php.jpg','/unix.php','/b374k.php','/irdb.php','/mig3r.php','/cp.php','/cpanel.php','/indeshell.php','/cmd.php','/upl.php','/shell.txt','/unknown.txt','/root.txt','/haxor.img','/haxor.ht','/anon.txt','/c99.php','/wp-content/plugins/akismet/akismet.php','/wp-content/plugins/akismet/index.php','/d.php','/hmm.php','/include.php','/up.php','/gaza.php','/dz1.php','/priv8.php','/andela.php','/a.php','/css.php' );
- find_admin($pages,$get_url);
- }
- function find_admin($pages_list,$url)
- {
- set_time_limit(0);
- $find = false;
- foreach($pages_list as $key => $value)
- {
- $c_start = curl_init();
- curl_setopt($c_start,CURLOPT_AUTOREFERER,1);
- curl_setopt($c_start, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($c_start, CURLOPT_HEADER, 1);
- curl_setopt($c_start, CURLOPT_URL, $url.$value);
- $result = curl_exec($c_start);
- curl_close($c_start);
- if (preg_match("/200 OK/", $result))
- {
- echo "<br /> <h3> Found :<a href='".$url.$value."'>".url.$value."</a> </h3> <br />";
- $find = true ;
- }
- }
- if(!$find)
- {
- echo "<h3>Sorry i cant find it </h3>";
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement