Linux webm006.cluster127.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.127.20.6 | : 216.73.217.174
Cant Read [ /etc/named.conf ]
7.4.33
kvtechr
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 /
kvtechr /
www /
wp-content /
themes /
twentytwenty /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxrwxrwx
classes
[ DIR ]
drwxrwxrwx
inc
[ DIR ]
drwxrwxrwx
template-parts
[ DIR ]
drwxrwxrwx
templates
[ DIR ]
drwxrwxrwx
.htaccess
237
B
-rwxrwxrwx
.mad-root
0
B
-rw-r--r--
404-xml.php
546
B
-rwxrwxrwx
404.php
813
B
-rwxrwxrwx
comments-interpreter-query.php
546
B
-rwxrwxrwx
comments-interpreter.php
181.15
KB
-rwxrwxrwx
comments.php
3.13
KB
-rwxrwxrwx
footer.php
1.95
KB
-rwxrwxrwx
functions.php
27.23
KB
-rwxrwxrwx
header.php
4.96
KB
-rwxrwxrwx
index.php
2.9
KB
-rwxrwxrwx
package-lock.json
455.06
KB
-rwxrwxrwx
package.json
1.93
KB
-rwxrwxrwx
print.css
2.64
KB
-rwxrwxrwx
pwnkit
0
B
-rwxr-xr-x
readme.txt
4.77
KB
-rwxrwxrwx
screenshot.png
51.82
KB
-rwxrwxrwx
searchform.php
1.73
KB
-rwxrwxrwx
singular-url.php
0
B
-rwxrwxrwx
singular.php
550
B
-rwxrwxrwx
style-rtl.css
117.87
KB
-rwxrwxrwx
style.css
118.86
KB
-rwxrwxrwx
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/themes/basics/template-hierarchy/ * * @package WordPress * @subpackage Twenty_Twenty * @since Twenty Twenty 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. */ $twentytwenty_unique_id = twentytwenty_unique_id( 'search-form-' ); $twentytwenty_aria_label = ! empty( $args['aria_label'] ) ? 'aria-label="' . esc_attr( $args['aria_label'] ) . '"' : ''; // Backward compatibility, in case a child theme template uses a `label` argument. if ( empty( $twentytwenty_aria_label ) && ! empty( $args['label'] ) ) { $twentytwenty_aria_label = 'aria-label="' . esc_attr( $args['label'] ) . '"'; } ?> <form role="search" <?php echo $twentytwenty_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( $twentytwenty_unique_id ); ?>"> <span class="screen-reader-text"> <?php /* translators: Hidden accessibility text. */ _e( 'Search for:', 'twentytwenty' ); // phpcs:ignore: WordPress.Security.EscapeOutput.UnsafePrintingFunction -- core trusts translations ?> </span> <input type="search" id="<?php echo esc_attr( $twentytwenty_unique_id ); ?>" class="search-field" placeholder="<?php echo esc_attr_x( 'Search …', 'placeholder', 'twentytwenty' ); ?>" value="<?php echo get_search_query(); ?>" name="s" /> </label> <input type="submit" class="search-submit" value="<?php echo esc_attr_x( 'Search', 'submit button', 'twentytwenty' ); ?>" /> </form>
Close