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
images
[ DIR ]
drwxrwxrwx
js
[ DIR ]
drwxrwxrwx
languages
[ DIR ]
drwxrwxrwx
widgets
[ DIR ]
drwxrwxrwx
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-
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-archives.php
<?php /* Template Name: Archive template */ ?> <?php get_header(); ?> <div class="wrapper section medium-padding"> <div class="section-inner"> <div class="content fleft"> <div class="post"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <?php if ( has_post_thumbnail() ) : ?> <div class="featured-media"> <a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"> <?php the_post_thumbnail( 'post-image' ); $image_caption = get_post( get_post_thumbnail_id() )->post_excerpt; if ( $image_caption ) : ?> <div class="media-caption-container"> <p class="media-caption"><?php echo $image_caption; ?></p> </div> <?php endif; ?> </a> </div><!-- .featured-media --> <?php endif; ?> <div class="post-header"> <?php the_title( '<h1 class="post-title">', '</h1>' ); ?> </div><!-- .post-header --> <div class="post-content"> <?php the_content(); ?> <div class="archive-box"> <div class="archive-col"> <h3><?php _e( 'Last 30 Posts', 'baskerville' ); ?></h3> <ul> <?php $archive_30 = get_posts( array( 'post_status' => 'publish', 'posts_per_page' => 30, ) ); foreach( $archive_30 as $recent_post ) : ?> <li> <a href="<?php echo get_the_permalink( $recent_post->ID ); ?>"> <?php echo get_the_title( $recent_post->ID ); ?> <span>(<?php echo get_the_time( get_option( 'date_format' ), $recent_post->ID ); ?>)</span> </a> </li> <?php endforeach; ?> </ul> <h3><?php _e( 'Archives by Categories', 'baskerville' ) ?></h3> <ul> <?php wp_list_categories( 'title_li=' ); ?> </ul> <h3><?php _e( 'Archives by Tags', 'baskerville' ); ?></h3> <ul> <?php $tags = get_tags(); if ( $tags ) { foreach ( $tags as $tag ) { echo '<li><a href="' . get_tag_link( $tag->term_id ) . '" title="' . sprintf( __( "View all posts in %s", 'baskerville' ), $tag->name ) . '"' . '>' . $tag->name.'</a></li> '; } } wp_reset_query();?> </ul> </div><!-- .archive-col --> <div class="archive-col"> <h3><?php _e( 'Contributors', 'baskerville' ); ?></h3> <ul> <?php wp_list_authors(); ?> </ul> <h3><?php _e( 'Archives by Year', 'baskerville' ); ?></h3> <ul> <?php wp_get_archives( 'type=yearly' ); ?> </ul> <h3><?php _e( 'Archives by Month', 'baskerville' ); ?></h3> <ul> <?php wp_get_archives( 'type=monthly' ); ?> </ul> <h3><?php _e( 'Archives by Day', 'baskerville' ); ?></h3> <ul> <?php wp_get_archives( 'type=daily' ); ?> </ul> </div><!-- .archive-col --> <div class="clear"></div> </div><!-- .archive-box --> </div><!-- .post-content --> <?php wp_reset_query(); ?> <div class="clear"></div> <?php comments_template( '', true ); ?> <?php endwhile; endif; ?> </div><!-- .post --> </div><!-- .content --> <?php get_sidebar(); ?> <div class="clear"></div> </div><!-- .section-inner --> </div><!-- .wrapper section-inner --> <?php get_footer(); ?>
Close