Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
owc /
wp-content /
themes /
eduma /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-x--x
bbpress
[ DIR ]
drwxr-x--x
buddypress
[ DIR ]
drwxr-x--x
images
[ DIR ]
drwxr-x--x
inc
[ DIR ]
drwxr-x--x
languages
[ DIR ]
drwxr-x--x
learnpress-v3
[ DIR ]
drwxr-x--x
learnpress-v4
[ DIR ]
drwxr-x--x
lp-child-path
[ DIR ]
drwxr-x--x
our-team
[ DIR ]
drwxr-x--x
page-templates
[ DIR ]
drwxr-x--x
paid-memberships-pro
[ DIR ]
drwxr-x--x
plugins
[ DIR ]
drwxr-x--x
portfolio
[ DIR ]
drwxr-x--x
testimonials
[ DIR ]
drwxr-x--x
thim-elementor-kit
[ DIR ]
drwxr-x--x
thim-twitter
[ DIR ]
drwxr-x--x
vc_templates
[ DIR ]
drwxr-x--x
video-conferencing-zoom
[ DIR ]
drwxr-x--x
woocommerce
[ DIR ]
drwxr-x--x
wp-events-manager
[ DIR ]
drwxr-x--x
404.php
1.52
KB
-rwxr-x--x
archive.php
1.38
KB
-rwxr-x--x
changelog.html
45.18
KB
-rwxr-x--x
comments.php
3.24
KB
-rwxr-x--x
content-grid.php
2.55
KB
-rwxr-x--x
content-none.php
1.12
KB
-rwxr-x--x
content-page.php
492
B
-rwxr-x--x
content-search.php
1.64
KB
-rwxr-x--x
content-single.php
1.23
KB
-rwxr-x--x
content.php
1.49
KB
-rwxr-x--x
footer.php
695
B
-rwxr-x--x
functions.php
31.25
KB
-rwxr-x--x
header.php
1.92
KB
-rwxr-x--x
index.html
0
B
-rwxr-x--x
index.php
1.39
KB
-rwxr-x--x
integrations.txt
308
B
-rwxr-x--x
page.php
932
B
-rwxr-x--x
readme.txt
27
B
-rwxr-x--x
rtl-min.css
95.69
KB
-rwxr-x--x
rtl.css
110.99
KB
-rwxr-x--x
screenshot.png
202.42
KB
-rwxr-x--x
search.php
971
B
-rwxr-x--x
sidebar-courses.php
802
B
-rwxr-x--x
sidebar-events.php
1.98
KB
-rwxr-x--x
sidebar-shop.php
744
B
-rwxr-x--x
sidebar.php
724
B
-rwxr-x--x
single.php
997
B
-rwxr-x--x
style-editor.css
2.73
KB
-rwxr-x--x
style.css
1.17
MB
-rwxr-x--x
wpml-config.xml
17.3
KB
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : comments.php
<?php /** * The template for displaying comments. * * The area of the page that contains both current comments * and the comment form. * * @package thim */ /* * 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; } if ( have_comments() && ! ( ! comments_open() && '0' != get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) ) { $class_has_comments = " has-comments"; } else { $class_has_comments = ""; } ?> <div id="comments" class="comments-area<?php echo esc_attr( $class_has_comments ); ?>"> <?php // You can start editing here -- including this comment! ?> <?php if ( have_comments() ) : ?> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> <nav id="comment-nav-above" class="comment-navigation" role="navigation"> <h1 class="screen-reader-text"><?php esc_attr_e( 'Comment navigation', 'eduma' ); ?></h1> <div class="nav-previous"><?php previous_comments_link( esc_html__( '← Older Comments', 'eduma' ) ); ?></div> <div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments →', 'eduma' ) ); ?></div> </nav><!-- #comment-nav-above --> <?php endif; // check for comment navigation ?> <ol class="comment-list"> <div class="comment-list-inner"> <h3 class="comments-title"> <?php printf( _nx( '1 Comment', '%1$s Comments', get_comments_number(), 'comments title', 'eduma' ), number_format_i18n( get_comments_number() ) ); ?> </h3> <?php wp_list_comments( 'style=li&&type=comment&avatar_size=90&callback=thim_comment' ); ?> </div> </ol><!-- .comment-list --> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> <nav id="comment-nav-below" class="comment-navigation" role="navigation"> <h1 class="screen-reader-text"><?php esc_attr_e( 'Comment navigation', 'eduma' ); ?></h1> <div class="nav-previous"><?php previous_comments_link( esc_html__( '← Older Comments', 'eduma' ) ); ?></div> <div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments →', 'eduma' ) ); ?></div> </nav><!-- #comment-nav-below --> <?php endif; // check for comment navigation ?> <?php endif; // have_comments() ?> <?php // If comments are closed and there are comments, let's leave a little note, shall we? if ( ! comments_open() && '0' != get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : ?> <!-- <p class="no-comments" style="background: #fff;padding: 30px;"><?php esc_attr_e( 'Comments are closed.', 'eduma' ); ?></p> --> <?php endif; ?> <div class="comment-respond-area"> <?php comment_form( array( 'title_reply' => esc_html__( 'Leave A Reply', 'eduma' ), 'label_submit' => esc_html__( 'Post Comment', 'eduma' ), 'comment_field' => '<p class="comment-form-comment"><textarea placeholder="' . esc_attr__( 'Comment *', 'eduma' ) . '" id="comment" name="comment" cols="45" rows="8" aria-required="true">' . '</textarea></p>' ) ); ?> </div> <div class="clear"></div> </div><!-- #comments -->
Close