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.15.17.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 /
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 : slider2.php
<?php include("../include/db.php"); if(!(isset($_SESSION['EMAIL']))) { header("location:login.php"); } if(!(isset($_SESSION['UTYPE']))) { header("location:login.php"); } if(isset($_SESSION['UTYPE'])) { $user=$_SESSION['UTYPE']; if(!($user=='ADMIN')) { header("location:login.php"); } } $page = "slider2"; include("header.php"); ?> <script> function add_category(){ window.location = "subcategory_list.php"; } </script> <script> function edit_stock(id){ window.location = "nav_change.php?s_id="+id; } </script> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <div class="container-fluid"> <div class="row mb-2"> <!--<div class="col-sm-6"> <h1>DataTables</h1> </div> <div class="col-sm-6"> <ol class="breadcrumb float-sm-right"> <li class="breadcrumb-item"><a href="#">Home</a></li> <li class="breadcrumb-item active">DataTables</li> </ol> </div>--> </div> </div><!-- /.container-fluid --> </section> <!-- Main content --> <section class="content"> <div class="row"> <div class="col-12"> <div class="card"> <div class="card-header"> <h1 class="card-title">Product Master</h1> <button type="button" class="btn btn-primary" style="float:right" onclick="add_category()">Sub-Category List</button> </div> <!-- /.card-header --> <div class="card-body table-responsive p-0"> <table id="example1" class="table table-bordered table-striped"> <thead> <tr> <th>Sl No</th> <!--<th>Category Id</th>--> <th>Sub-Category Name</th> <th>Display</th> </tr> </thead> <tbody> <?php // $get=mysqli_query(con, "select * from product") ?> <?php $i = 0; $category_id = ""; $category_name = ""; $query=mysqli_query($con,"select * from sub_category "); while($row=mysqli_fetch_assoc($query)) { $i++; $c_id = $row['id']; $c_id=encryptData($c_id); $category_name = $row['sub_cat_name']; $category_status = $row['top_sub_cat']; if($category_status==0){ $status='Display'; $class='btn-success'; }else{ $status='Hide'; $class='btn-danger'; } ?> <tr> <td><?php echo $i; ?></td> <!--<td><?php echo $c_id; ?></td>--> <td><?php echo $category_name; ?></td> <!--<td><a href="category_list.php?c_id=<?php echo $category_id ?>"><?php echo $status; ?></a></td>--> <td><button class="btn <?php echo $class; ?>" onclick="edit_stock(<?php echo $c_id; ?>)"><?php echo $status; ?></button></td> </tr> <?php } ?> </tbody> <!--<tfoot> <tr> <th>Rendering engine</th> <th>Browser</th> <th>Platform(s)</th> <th>Engine version</th> <th>CSS grade</th> </tr> </tfoot>--> </table> </div> <!-- /.card-body --> </div> <!-- /.card --> </div> <!-- /.col --> </div> <!-- /.row --> </section> <!-- /.content --> </div> <!-- /.content-wrapper --> <?php include("footer.php"); ?>
Close