Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
human /
wp-content /
themes /
vw-landing-page /
inc /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
block-patterns
[ DIR ]
drwxr-xr-x
getstart
[ DIR ]
drwxr-xr-x
logo
[ DIR ]
drwxr-xr-x
tgm
[ DIR ]
drwxr-xr-x
themes-widgets
[ DIR ]
drwxr-xr-x
typography
[ DIR ]
drwxr-xr-x
custom-controls.php
4.38
KB
-rwxr-xr-x
custom-header.php
1.23
KB
-rwxr-xr-x
customizer.php
128.26
KB
-rwxr-xr-x
icon-picker.php
20.14
KB
-rwxr-xr-x
section-pro.php
1.36
KB
-rwxr-xr-x
template-tags.php
3.64
KB
-rwxr-xr-x
wptt-webfont-loader.php
16.86
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : custom-header.php
<?php /** * @package VW Landing Page * Setup the WordPress core custom header feature. * * @uses vw_landing_page_header_style() */ function vw_landing_page_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'vw_landing_page_custom_header_args', array( 'default-text-color' => 'fff', 'header-text' => false, 'width' => 1600, 'height' => 68, 'flex-width' => true, 'flex-height' => true, 'wp-head-callback' => 'vw_landing_page_header_style', ) ) ); } add_action( 'after_setup_theme', 'vw_landing_page_custom_header_setup' ); if ( ! function_exists( 'vw_landing_page_header_style' ) ) : /** * Styles the header image and text displayed on the blog * * @see vw_landing_page_custom_header_setup(). */ add_action( 'wp_enqueue_scripts', 'vw_landing_page_header_style' ); function vw_landing_page_header_style() { //Check if user has defined any header image. if ( get_header_image() ) : $custom_css = " .main-header{ background-image:url('".esc_url(get_header_image())."'); background-position: center top; background-size: cover; }"; wp_add_inline_style( 'vw-landing-page-basic-style', $custom_css ); endif; } endif;
Close