Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
var /
www /
html /
cai /
caiold1 /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-x--x
css
[ DIR ]
drwxr-x--x
js
[ DIR ]
drwxr-x--x
lib
[ DIR ]
drwxr-x--x
uploadDoc
[ DIR ]
drwxr-x--x
changePassword.php
3.99
KB
-rwxr-x--x
class.admin.php
4.39
KB
-rwxr-x--x
common.php
5.6
KB
-rwxr-x--x
common_old07032022.php
5.4
KB
-rwxr-x--x
dashboard.php
8.35
KB
-rwxr-x--x
dashboard_old07032022.php
7.37
KB
-rwxr-x--x
dbconfig.php
1.22
KB
-rwxr-x--x
editImage.php
2.18
KB
-rwxr-x--x
fpass.php
3.07
KB
-rwxr-x--x
index.php
4
KB
-rwxr-x--x
logout.php
624
B
-rwxr-x--x
password.php
3.51
KB
-rwxr-x--x
projectDetails.php
9.7
KB
-rwxr-x--x
projectDetailsEdit.php
9.02
KB
-rwxr-x--x
projectDetailsEdit_old07032022...
8.63
KB
-rwxr-x--x
projectDetails_old07032022.php
9.16
KB
-rwxr-x--x
publicationEdit.php
9.6
KB
-rwxr-x--x
publicationEdit_old07032022.ph...
8.62
KB
-rwxr-x--x
register.php
5.57
KB
-rwxr-x--x
resetpass.php
5.26
KB
-rwxr-x--x
vacanciesEdit.php
9.19
KB
-rwxr-x--x
vaccancy.php
8.17
KB
-rwxr-x--x
verifyLink.php
10.13
KB
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : changePassword.php
<?php ob_start(); require __DIR__ . DIRECTORY_SEPARATOR . "lib" . DIRECTORY_SEPARATOR . "config.php"; // HTML require PATH_LIB . "page-top.php"; if(isset($_POST['submit'])) { echo $oldpass=hash('sha256', $_POST['opwd']); $adEmail=$_POST['adEmail']; $newpassword=hash('sha256', $_POST['npwd']); $sql=mysqli_query($connection,"SELECT adPassword FROM adminlogin where adPassword='$oldpass' && adEmail='$adEmail'"); $num=mysqli_fetch_array($sql); if($num>0) { $connection=mysqli_query($connection,"update adminlogin set adPassword='$newpassword' where adEmail='$adEmail'"); $successMSG="Password Changed Successfully !!"; } else { $errMSG ="Old Password not match !!"; } } ?> <script type="text/javascript"> function valid() { if(document.chngpwd.opwd.value=="") { alert("Old Password Filed is Empty !!"); document.chngpwd.opwd.focus(); return false; } else if(document.chngpwd.npwd.value=="") { alert("New Password Filed is Empty !!"); document.chngpwd.npwd.focus(); return false; } else if(document.chngpwd.cpwd.value=="") { alert("Confirm Password Filed is Empty !!"); document.chngpwd.cpwd.focus(); return false; } else if(document.chngpwd.npwd.value!= document.chngpwd.cpwd.value) { alert("Password and Confirm Password Field do not match !!"); document.chngpwd.cpwd.focus(); return false; } return true; } </script> <div id="layoutSidenav_content"> <main> <div class="container-fluid px-4 "> <h2 class="mt-4 mb-4">Change Password</h2> <div class="row"> <div class="col-xl-12"> <div class="card mb-4"> <div class="card-header">Change Password Form </div> <div class="card-body"> <form id="tutionFee" name="tutionFee" action="changePassword.php?authToken=<?php echo $tokenAuth;?>" method="post"> <div class="row"> <div class="box-body"> <?php if ( isset( $errMSG ) ) { ?> <div class="alert alert-warning alert-dismissible fade show" role="alert"> <?php echo $errMSG; ?> <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button> </div> <?php } else if ( isset( $successMSG ) ) { ?> <div class="alert alert-success alert-dismissible fade show" role="alert"> <?php echo $successMSG; ?> <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button> </div> <?php } ?> </div> <div class="mb-3 col-md-4"> <label for="exampleFormControlInput1" class="form-label">Email Id</label> <input type="text" name="adEmail" value="<?php echo $row['adEmail'];?>" class="form-control" readonly> </div> <div class="mb-3 col-md-4"> <label for="address" class="form-label">Old Password</label> <input type="password" name="opwd" class="form-control" placeholder="Old Password ..."> </div> <div class="mb-3 col-md-4"> <label for="salary" class="form-label">New Password</label> <input type="password" name="npwd" class="form-control" placeholder="New Password ..."> </div> <!--<div class="mb-3 col-md-4"> <label for="exampleFormControlTextarea1" class="form-label">Confirm Password</label> <input type="password" name="cpwd" class="form-control" placeholder="Confirm Password ..."> </div> --> </div> <div class="mb-3"> <input type="submit" class="btn btn-primary btn-sm" value="Change Password" name="submit"> </div> </form> </div> </div> </div> </div> </div> </main> <?php ob_end_flush(); require PATH_LIB . "page-bottom.php"; ?>
Close