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 /
grad /
new /
wp-content /
themes /
generatepress /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
assets
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
404.php
790
B
-rwxr-xr-x
archive.php
1.41
KB
-rwxr-xr-x
comments.php
3.53
KB
-rwxr-xr-x
content-404.php
1.48
KB
-rwxr-xr-x
content-link.php
2.13
KB
-rwxr-xr-x
content-page.php
1.72
KB
-rwxr-xr-x
content-single.php
1.92
KB
-rwxr-xr-x
content.php
2.13
KB
-rwxr-xr-x
footer-min.php
289
B
-rwxr-xr-x
footer.php
906
B
-rwxr-xr-x
functions.php
3.5
KB
-rwxr-xr-x
header-min.php
567
B
-rwxr-xr-x
header.php
1.43
KB
-rwxr-xr-x
index.php
1.55
KB
-rwxr-xr-x
no-results.php
1.66
KB
-rwxr-xr-x
page.php
1.07
KB
-rwxr-xr-x
readme.txt
17.59
KB
-rwxr-xr-x
screenshot.png
69.02
KB
-rwxr-xr-x
search.php
1.24
KB
-rwxr-xr-x
searchform.php
1.4
KB
-rwxr-xr-x
sidebar-left.php
659
B
-rwxr-xr-x
sidebar.php
666
B
-rwxr-xr-x
single.php
898
B
-rwxr-xr-x
style.css
1.91
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : comments.php
<?php /** * The template for displaying Comments. * * The area of the page that contains both current comments * and the comment form. The actual display of comments is * handled by a callback to generate_comment() which is * located in the inc/template-tags.php file. * * @package GeneratePress */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /* * If the current post is protected by a password and * the visitor has not yet entered the password we will * return early without loading the comments. */ if ( post_password_required() ) { return; } /** * generate_before_comments hook. * * @since 0.1 */ do_action( 'generate_before_comments' ); ?> <div id="comments"> <?php /** * generate_inside_comments hook. * * @since 1.3.47 */ do_action( 'generate_inside_comments' ); if ( have_comments() ) : $comments_number = get_comments_number(); $comments_title = apply_filters( 'generate_comment_form_title', sprintf( esc_html( /* translators: 1: number of comments, 2: post title */ _nx( '%1$s thought on “%2$s”', '%1$s thoughts on “%2$s”', $comments_number, 'comments title', 'generatepress' ) ), number_format_i18n( $comments_number ), get_the_title() ) ); // phpcs:ignore -- Title escaped in output. echo apply_filters( 'generate_comments_title_output', sprintf( '<h2 class="comments-title">%s</h2>', esc_html( $comments_title ) ), $comments_title, $comments_number ); /** * generate_below_comments_title hook. * * @since 0.1 */ do_action( 'generate_below_comments_title' ); if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?> <nav id="comment-nav-above" class="comment-navigation" role="navigation"> <h2 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'generatepress' ); ?></h2> <div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'generatepress' ) ); ?></div> <div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'generatepress' ) ); ?></div> </nav><!-- #comment-nav-above --> <?php endif; ?> <ol class="comment-list"> <?php /* * Loop through and list the comments. Tell wp_list_comments() * to use generate_comment() to format the comments. * If you want to override this in a child theme, then you can * define generate_comment() and that will be used instead. * See generate_comment() in inc/template-tags.php for more. */ wp_list_comments( array( 'callback' => 'generate_comment', ) ); ?> </ol><!-- .comment-list --> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?> <nav id="comment-nav-below" class="comment-navigation" role="navigation"> <h2 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'generatepress' ); ?></h2> <div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'generatepress' ) ); ?></div> <div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'generatepress' ) ); ?></div> </nav><!-- #comment-nav-below --> <?php endif; endif; // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison if ( ! comments_open() && '0' != get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : ?> <p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'generatepress' ); ?></p> <?php endif; comment_form(); ?> </div><!-- #comments -->
Close