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 /
urlab /
wp-content /
themes /
neve /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxrwxrwx
docs
[ DIR ]
drwxrwxrwx
globals
[ DIR ]
drwxrwxrwx
header-footer-grid
[ DIR ]
drwxrwxrwx
inc
[ DIR ]
drwxrwxrwx
languages
[ DIR ]
drwxrwxrwx
page-templates
[ DIR ]
drwxrwxrwx
template-parts
[ DIR ]
drwxrwxrwx
vendor
[ DIR ]
drwxrwxrwx
views
[ DIR ]
drwxrwxrwx
woocommerce
[ DIR ]
drwxrwxrwx
404.php
108
B
-rwxrwxrwx
500.php
178
B
-rwxrwxrwx
CHANGELOG.md
61.91
KB
-rwxrwxrwx
LICENSE.txt
17.67
KB
-rwxrwxrwx
archive-download.php
1.06
KB
-rwxrwxrwx
autoloader.php
4.05
KB
-rwxrwxrwx
comments.php
295
B
-rwxrwxrwx
footer-pwa.php
147
B
-rwxrwxrwx
footer.php
1.21
KB
-rwxrwxrwx
functions.php
5.04
KB
-rwxrwxrwx
header-pwa.php
680
B
-rwxrwxrwx
header.php
2.63
KB
-rwxrwxrwx
index.php
4.09
KB
-rwxrwxrwx
offline.php
178
B
-rwxrwxrwx
page.php
1.59
KB
-rwxrwxrwx
postcss.config.js
58
B
-rwxrwxrwx
readme.md
45.22
KB
-rwxrwxrwx
readme.txt
45.14
KB
-rwxrwxrwx
screenshot-mobile.png
17.77
KB
-rwxrwxrwx
screenshot.png
610.36
KB
-rwxrwxrwx
search.php
1.18
KB
-rwxrwxrwx
searchform.php
1.97
KB
-rwxrwxrwx
sidebar-shop.php
325
B
-rwxrwxrwx
sidebar.php
306
B
-rwxrwxrwx
single-download.php
1.21
KB
-rwxrwxrwx
single.php
1.17
KB
-rwxrwxrwx
start.php
2.51
KB
-rwxrwxrwx
style-main-new-rtl.css
45.92
KB
-rwxrwxrwx
style-main-new-rtl.min.css
38.82
KB
-rwxrwxrwx
style-main-new.css
45.95
KB
-rwxrwxrwx
style-main-new.min.css
38.81
KB
-rwxrwxrwx
style.css
1.52
KB
-rwxrwxrwx
taxonomy-download_category.php
1.07
KB
-rwxrwxrwx
taxonomy-download_tag.php
1.07
KB
-rwxrwxrwx
toolset-config.json
4.33
KB
-rwxrwxrwx
wpml-config.xml
1.08
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : searchform.php
<?php /** * Search form * * @package Neve. */ $form_classes = [ 'search-form' ]; $placeholder = array_key_exists( 'placeholder', $args ) ? $args['placeholder'] : __( 'Search for...', 'neve' ); if ( array_key_exists( 'additional_form_classes', $args ) && is_array( $args['additional_form_classes'] ) ) { $form_classes = array_merge( $form_classes, $args['additional_form_classes'] ); } $value = array_key_exists( 'value', $args ) ? $args['value'] : ''; $placeholder = apply_filters( 'nv_search_placeholder', $placeholder ); $aria_label = __( 'Search', 'neve' ); $home_url = home_url( '/' ); if ( function_exists( 'PLL' ) ) { $pll_data = PLL(); if ( property_exists( $pll_data, 'links' ) && method_exists( $pll_data->links, 'get_home_url' ) ) { $home_url = $pll_data->links->get_home_url( null, true ); } } $has_text_button = isset( $args['button_text'] ); $context = array_key_exists( 'context', $args ) ? $args['context'] : false; ?> <form role="search" method="get" class="<?php echo esc_attr( implode( ' ', $form_classes ) ); ?>" action="<?php echo esc_url( $home_url ); ?>"> <label> <span class="screen-reader-text"><?php echo esc_html__( 'Search for...', 'neve' ); ?></span> </label> <input type="search" class="search-field" aria-label="<?php echo esc_attr__( 'Search', 'neve' ); ?>" placeholder="<?php echo esc_attr( $placeholder ); ?>" value="<?php echo esc_attr( $value ); ?>" name="s"/> <button type="submit" class="search-submit<?php echo $has_text_button ? ' nv-text-btn' : ''; ?>" aria-label="<?php echo esc_attr( $aria_label ); ?>"> <?php if ( $has_text_button ) { ?> <?php echo esc_html( $args['button_text'] ); ?> <?php } else { ?> <span class="nv-search-icon-wrap"> <?php neve_search_icon( false, true, 15, false, $context ); ?> </span> <?php } ?> </button> <?php if ( array_key_exists( 'post_type', $args ) ) { echo '<input type="hidden" name="post_type" value="' . esc_attr( $args['post_type'] ) . '"/>'; } ?> </form>
Close