Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cipd /
wp-content /
themes /
astra /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxrwxr-x
assets
[ DIR ]
drwxrwxr-x
inc
[ DIR ]
drwxrwxr-x
languages
[ DIR ]
drwxrwxr-x
template-parts
[ DIR ]
drwxrwxr-x
404.php
685
B
-rwxrwxr-x
SECURITY.md
1.59
KB
-rwxrwxr-x
archive.php
727
B
-rwxrwxr-x
changelog.txt
149.52
KB
-rwxrwxr-x
comments.php
4.5
KB
-rwxrwxr-x
footer.php
605
B
-rwxrwxr-x
functions.php
8.64
KB
-rwxrwxr-x
header.php
1.46
KB
-rwxrwxr-x
index.php
904
B
-rwxrwxr-x
page.php
866
B
-rwxrwxr-x
readme.txt
6.78
KB
-rwxrwxr-x
screenshot.jpg
357.85
KB
-rwxrwxr-x
search.php
769
B
-rwxrwxr-x
searchform.php
2.08
KB
-rwxrwxr-x
sidebar.php
1000
B
-rwxrwxr-x
single.php
693
B
-rwxrwxr-x
style.css
4.47
KB
-rwxrwxr-x
theme.json
2.35
KB
-rwxrwxr-x
toolset-config.json
7.46
KB
-rwxrwxr-x
wpml-config.xml
5.11
KB
-rwxrwxr-x
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"' : ''; ?> <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="search-field" 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