Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 3.149.247.78
54 Domain
7.3.33
dpclient
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
dpclient /
public_html /
CMS-NEW /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
include
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
php
[ DIR ]
drwxr-xr-x
validations
[ DIR ]
drwxr-xr-x
404.php
1.5
KB
-rw-r--r--
add-keyword.php
5.24
KB
-rw-r--r--
assign-service.php
6.59
KB
-rw-r--r--
blank-page.php
486
B
-rw-r--r--
category-excel.php
2.02
KB
-rw-r--r--
category.php
5.59
KB
-rw-r--r--
change-password.php
1.87
KB
-rw-r--r--
dashboard.php
22.39
KB
-rw-r--r--
edit-profile.php
4.68
KB
-rw-r--r--
error_log
5.84
KB
-rw-r--r--
forgot-password.php
2.08
KB
-rw-r--r--
keywords.php
6.24
KB
-rw-r--r--
login.php
4.83
KB
-rw-r--r--
logout.php
194
B
-rw-r--r--
register.php
5.98
KB
-rw-r--r--
user-excel.php
2.11
KB
-rw-r--r--
user.php
3.61
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : user.php
<?php $page="user"; include("include/header.php"); user_list('user_details'); ?> <link href="assets/plugins/datatables-net/dataTables.bootstrap4.css" rel="stylesheet" /> <script src="//ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> <script src="//cdn.rawgit.com/rainabba/jquery-table2excel/1.1.0/dist/jquery.table2excel.min.js"></script> <div class="page-wrapper"> <?php include("include/top-nav.php"); ?> <div class="page-content"> <div class="d-flex justify-content-between align-items-center flex-wrap grid-margin"> <div> <h4 class="mb-3 mb-md-0">Users List</h4> </div> <div class="d-flex align-items-center flex-wrap text-nowrap"> <button type="button" class="btn btn-outline-primary btn-icon-text mr-2 mb-2 mb-md-0"> <i class="btn-icon-prepend" data-feather="printer"></i> Print </button> <a href="user-excel.php" target="_blank"> <button type="button" class="btn btn-primary btn-icon-text mb-2 mb-md-0"> <i class="btn-icon-prepend" data-feather="download-cloud"></i> Download Report </button></a> </div> </div> <div class="row"> <div class="col-md-12 grid-margin stretch-card"> <div class="card"> <div class="card-body"> <h6 class="card-title">User List</h6> <div class="table-responsive" id="employee_table"> <table id="dataTableExample" class="table"> <thead> <tr> <th>Sr No</th> <th>Created Date</th> <th>Name</th> <th>Email</th> <th>Mobile</th> <th>Company Name</th> <th>Status</th> </tr> </thead> <tbody> <?php $i='1'; while($res = mysqli_fetch_array($usrl)) { echo '<tr> <td>'.$i.'</td> <td>'.$res['create_at'].'</td> <td>'.$res['name'].'</td> <td>'.$res['email'].'</td> <td>'.$res['mobile'].'</td> <td>'.($res['company_name'] !=""?$res['company_name']:"N/A").'</td> <td id="'.$res['id'].'">'.($res['status']=='1'?'<button type="button" class="btn btn-outline-success mb-1 mb-md-0 chng_st" data-id="'.$res['id'].'" data-idd="'.$res['status'].'" >Acivate User</button>':'<button type="button" class="btn btn-outline-danger mb-1 mb-md-0 chng_st" data-id="'.$res['id'].'" data-idd="'.$res['status'].'" >DeAcivate User</button>').'</td> </tr>'; $i++; } ?> </tbody> </table> </div> </div> </div> </div> </div> </div> <?php include("include/footer.php"); ?> <script type="text/javascript"> $(document).ready(function(){ $("#dataTableExample").on("click", ".chng_st", function(){ ctr_id=$(this).data("id"); ctr_idd=$(this).data("idd"); $("#"+ctr_id).html("<img src='assets/images/c_loader_bw.gif' />"); $.post('php/',{'caseno': btoa("5"),'link':ctr_id,'status':ctr_idd}, function(data){ $("#"+ctr_id).html(data); }).fail(function(xhr, ajaxOptions, thrownError) { alert(thrownError); }); } ); } ); </script>
Close