Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
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 /
insepet /
wp-content /
themes /
twentyfourteen /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxr-xr-x
genericons
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
page-templates
[ DIR ]
drwxr-xr-x
404.php
719
B
-rw-r--r--
archive.php
2.1
KB
-rw-r--r--
author.php
1.88
KB
-rw-r--r--
category.php
1.49
KB
-rw-r--r--
comments.php
2.62
KB
-rw-r--r--
content-aside.php
2.27
KB
-rw-r--r--
content-audio.php
2.27
KB
-rw-r--r--
content-featured-post.php
1.09
KB
-rw-r--r--
content-gallery.php
2.28
KB
-rw-r--r--
content-image.php
2.27
KB
-rw-r--r--
content-link.php
2.27
KB
-rw-r--r--
content-none.php
961
B
-rw-r--r--
content-page.php
884
B
-rw-r--r--
content-quote.php
2.27
KB
-rw-r--r--
content-video.php
2.27
KB
-rw-r--r--
content.php
2.29
KB
-rw-r--r--
error_log
6.79
KB
-rw-r--r--
featured-content.php
941
B
-rw-r--r--
footer.php
927
B
-rw-r--r--
functions.php
19.92
KB
-rw-r--r--
header.php
2.41
KB
-rw-r--r--
image.php
2.63
KB
-rw-r--r--
index.php
1.53
KB
-rw-r--r--
page.php
1.15
KB
-rw-r--r--
readme.txt
4.2
KB
-rw-r--r--
rtl.css
15.5
KB
-rw-r--r--
screenshot.png
911.43
KB
-rw-r--r--
search.php
1.19
KB
-rw-r--r--
sidebar-content.php
340
B
-rw-r--r--
sidebar-footer.php
395
B
-rw-r--r--
sidebar.php
847
B
-rw-r--r--
single.php
1017
B
-rw-r--r--
style.css
79.31
KB
-rw-r--r--
tag.php
1.55
KB
-rw-r--r--
taxonomy-post_format.php
2.3
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : comments.php
<?php /** * The template for displaying Comments * * The area of the page that contains comments and the comment form. * * @package WordPress * @subpackage Twenty_Fourteen * @since Twenty Fourteen 1.0 */ /* * 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 if ( have_comments() ) : ?> <h2 class="comments-title"> <?php $comments_number = get_comments_number(); if ( '1' === $comments_number ) { /* translators: %s: post title */ printf( _x( 'One thought on “%s”', 'comments title', 'twentyfourteen' ), get_the_title() ); } else { printf( /* translators: 1: number of comments, 2: post title */ _nx( '%1$s thought on “%2$s”', '%1$s thoughts on “%2$s”', $comments_number, 'comments title', 'twentyfourteen' ), number_format_i18n( $comments_number ), get_the_title() ); } ?> </h2> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?> <nav id="comment-nav-above" class="navigation comment-navigation" role="navigation"> <h1 class="screen-reader-text"><?php _e( 'Comment navigation', 'twentyfourteen' ); ?></h1> <div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'twentyfourteen' ) ); ?></div> <div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'twentyfourteen' ) ); ?></div> </nav><!-- #comment-nav-above --> <?php endif; // Check for comment navigation. ?> <ol class="comment-list"> <?php wp_list_comments( array( 'style' => 'ol', 'short_ping' => true, 'avatar_size' => 34, ) ); ?> </ol><!-- .comment-list --> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?> <nav id="comment-nav-below" class="navigation comment-navigation" role="navigation"> <h1 class="screen-reader-text"><?php _e( 'Comment navigation', 'twentyfourteen' ); ?></h1> <div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'twentyfourteen' ) ); ?></div> <div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'twentyfourteen' ) ); ?></div> </nav><!-- #comment-nav-below --> <?php endif; // Check for comment navigation. ?> <?php if ( ! comments_open() ) : ?> <p class="no-comments"><?php _e( 'Comments are closed.', 'twentyfourteen' ); ?></p> <?php endif; ?> <?php endif; // have_comments() ?> <?php comment_form(); ?> </div><!-- #comments -->
Close