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 /
conreg /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
bower_components
[ DIR ]
drwxr-xr-x
database
[ DIR ]
drwxr-xr-x
dist
[ DIR ]
drwxr-xr-x
documents
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
mailer
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
uploadDoc
[ DIR ]
drwxr-xr-x
validation
[ DIR ]
drwxr-xr-x
404.php
2.86
KB
-rw-r--r--
changePassword.php
4.67
KB
-rw-r--r--
class.user.php
3.69
KB
-rw-r--r--
common-oldbkp.php
5.19
KB
-rw-r--r--
common.php
5.99
KB
-rw-r--r--
config.php
296
B
-rw-r--r--
dashboard.php
7.11
KB
-rw-r--r--
dbconfig.php
1.31
KB
-rw-r--r--
error_log
5.69
KB
-rw-r--r--
forgotPassword.php
5.28
KB
-rw-r--r--
fpass.php
3.11
KB
-rw-r--r--
google_auth.php
2.06
KB
-rw-r--r--
index-login-bkp.php
5.62
KB
-rw-r--r--
index.php
11.97
KB
-rw-r--r--
logout.php
645
B
-rw-r--r--
logoutgmail.php
977
B
-rw-r--r--
page-top.php
5.8
KB
-rw-r--r--
pay-bkp15722.php
8.49
KB
-rw-r--r--
pay-oldbkp.php
5.39
KB
-rw-r--r--
pay.php
5.15
KB
-rw-r--r--
payNow-oldbkp.php
7.07
KB
-rw-r--r--
payNow.php
7.13
KB
-rw-r--r--
payNowLink-bkp15722.php
10.56
KB
-rw-r--r--
payNowLink.php
8.1
KB
-rw-r--r--
paymentlinkcn.php
7.95
KB
-rw-r--r--
paymentlinkcoa.php
8.33
KB
-rw-r--r--
paymentlinkcyber.php
7.95
KB
-rw-r--r--
paymentlinkdm.php
7.95
KB
-rw-r--r--
paymentlinkds.php
7.95
KB
-rw-r--r--
paymentlinkip.php
8.31
KB
-rw-r--r--
paymentlinkml.php
8.28
KB
-rw-r--r--
paymentlinkos.php
8.28
KB
-rw-r--r--
personalInformations-bkp15722....
16.31
KB
-rw-r--r--
personalInformations.php
19.12
KB
-rw-r--r--
register.php
18.78
KB
-rw-r--r--
registrationVerify.php
2.5
KB
-rw-r--r--
resetpass.php
5.27
KB
-rw-r--r--
verify-bkp15722.php
12.67
KB
-rw-r--r--
verify-oldbkp.php
7.15
KB
-rw-r--r--
verify.php
9.26
KB
-rw-r--r--
viewStudentDetails.php
18.73
KB
-rw-r--r--
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']); $studentEmail=$_POST['studentEmail']; $newpassword=hash('sha256', $_POST['npwd']); $sql=mysqli_query($connection,"SELECT studentPassword FROM studentregistration where studentPassword='$oldpass' && studentEmail='$studentEmail'"); $num=mysqli_fetch_array($sql); if($num>0) { $connection=mysqli_query($connection,"update studentregistration set studentPassword='$newpassword' where studentEmail='$studentEmail'"); $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> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> User Dashboard <!--<small>Control panel</small> --> </h1> <ol class="breadcrumb"> <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li> <li class="active">User Dashboard</li> </ol> </section> <!-- Main content --> <section class="content"> <form name="chngpwd" action="changePassword.php?authToken=<?php echo $tokenAuth;?>" method="post" onSubmit="return valid();"> <!-- SELECT2 EXAMPLE --> <div class="box box-default"> <div class="box-header with-border"> <h3 class="box-title">Change Password</h3> </div> <div class="box-body"> <?php if(isset($errMSG)){ ?> <div class="alert alert-danger alert-dismissible"> <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> <h4><i class="icon fa fa-ban"></i> Alert! <?php echo $errMSG; ?></h4> </div> <?php } else if(isset($successMSG)){ ?> <div class="alert alert-success alert-dismissible"> <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> <h4><i class="icon fa fa-check"></i> Alert! <?php echo $successMSG; ?></h4> </div> <?php } ?> </div> <!-- /.box-header --> <div class="box-body"> <div class="row"> <div class="col-md-6"> <div class="form-group"> <label>Email Id</label> <input type="text" name="studentEmail" value="<?php echo $row['studentEmail'];?>" class="form-control" readonly> </div> <!-- /.form-group --> <div class="form-group"> <label>Old Password</label> <input type="password" name="opwd" class="form-control" placeholder="Old Password ..."> </div> <!-- /.form-group --> </div> <!-- /.col --> <div class="col-md-6"> <!-- /.form-group --> <div class="form-group"> <label>New Password</label> <input type="password" name="npwd" class="form-control" placeholder="New Password ..."> </div> <!-- /.form-group --> <div class="form-group"> <label>Confirm Password</label> <input type="password" name="cpwd" class="form-control" placeholder="Confirm Password ..."> </div> <!-- /.form-group --> </div> <!-- /.col --> </div> <!-- /.row --> </div> <!-- /.box-body --> <div class="box-footer"> <button type="submit" class="btn btn-default">Cancel</button> <button type="submit" class="btn btn-info" name="submit" id="submit" value="Change Password" >Update</button> </div> </div> <!-- /.box --> </form> </section> <!-- /.content --> </div> <!-- /.content-wrapper --> <?php ob_end_flush(); require PATH_LIB . "page-bottom.php"; ?>
Close