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 | : 3.145.15.138
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 /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
db
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
theme
[ DIR ]
drwxr-xr-x
upload
[ DIR ]
drwxr-xr-x
.htaccess
903
B
-rw-r--r--
auth.php
1.1
KB
-rw-r--r--
blog-cat.php
7.22
KB
-rw-r--r--
blog-single.php
10.8
KB
-rw-r--r--
category.php
2.53
KB
-rw-r--r--
index.html
131
B
-rw-r--r--
index.php
9.17
KB
-rw-r--r--
post.php
4.73
KB
-rw-r--r--
subscribe.php
1007
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : category.php
<?php require_once "includes/config.php"; $cu = pn(current_url()); $categoryDetails = getCategoryDetails($cu); $posts = getPostDetailsByCategory($categoryDetails['uri']); // debug($posts); $config['seoTitle'] = $categoryDetails['seo_title']; $config['seoDescription'] = $categoryDetails['seo_description']; $config['seoKeywords'] = $categoryDetails['seo_keywords']; extract($config); require_once('includes/header.php'); ?> <!-- Celebrity Style --> <section class="Each-cat"> <div class="custom-container"> <h2 class="h2heading Blog_h2Heading"> <?= $categoryDetails['name'] ?> </h2> <!-- <div> <//?= $categoryDetails['content'] ?> </div> --> <div class="hr_v"></div> <br> <div class="Grids-4 today_story_Grids"> <?php if (mysqli_num_rows(@$posts) > 0) { while ($row = mysqli_fetch_assoc(@$posts)) { ?> <div class="today_story_items"> <a href="<?= base_url('post/' . @$row['uri']) ?>" aria-label="<?= @$row['name'] ?>"> <img class="Story_Logo" src="<?= base_url(@$row['thumbnail']) ?>" alt="<?= @$row['name'] ?>" loading="lazy"> <div class="today_story_txt"> <h2 class="font-11 today_story_tag"> <?= ucwords(str_replace('-', ' ', @$row['cat_uri'])) ?> </h2> <p class="font-18 today_story_blog"> <?= @$row['name'] ?> </p> <p class="font-12 today_story_auth"> By <span> <?= ucwords(@$row['author']) ?> </span> </p> </div> </a> </div> <?php } } ?> </div> <div class="center" style="display:none;"> <div class="pagination pagination1 pagination3 pagination4 pagination6"> <a href="#">«</a> <a href="#">1</a> <a href="#" class="active">2</a> <a href="#">3</a> <a href="#">4</a> <a href="#">5</a> <a href="#">6</a> <a href="#">»</a> </div> </div> </div> </section> <?php include('includes/footer.php'); ?>
Close