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.217.167
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
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--
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 : functions.php
<?php /** * Storefront engine room * * @package storefront */ /** * Assign the Storefront version to a var */ $theme = wp_get_theme( 'storefront' ); $storefront_version = $theme['Version']; /** * Set the content width based on the theme's design and stylesheet. */ if ( ! isset( $content_width ) ) { $content_width = 980; /* pixels */ } $storefront = (object) array( 'version' => $storefront_version, /** * Initialize all the things. */ 'main' => require 'inc/class-storefront.php', 'customizer' => require 'inc/customizer/class-storefront-customizer.php', ); require 'inc/storefront-functions.php'; require 'inc/storefront-template-hooks.php'; require 'inc/storefront-template-functions.php'; require 'inc/wordpress-shims.php'; if ( class_exists( 'Jetpack' ) ) { $storefront->jetpack = require 'inc/jetpack/class-storefront-jetpack.php'; } if ( storefront_is_woocommerce_activated() ) { $storefront->woocommerce = require 'inc/woocommerce/class-storefront-woocommerce.php'; $storefront->woocommerce_customizer = require 'inc/woocommerce/class-storefront-woocommerce-customizer.php'; require 'inc/woocommerce/class-storefront-woocommerce-adjacent-products.php'; require 'inc/woocommerce/storefront-woocommerce-template-hooks.php'; require 'inc/woocommerce/storefront-woocommerce-template-functions.php'; require 'inc/woocommerce/storefront-woocommerce-functions.php'; } if ( is_admin() ) { $storefront->admin = require 'inc/admin/class-storefront-admin.php'; require 'inc/admin/class-storefront-plugin-install.php'; } /** * NUX * Only load if wp version is 4.7.3 or above because of this issue; * https://core.trac.wordpress.org/ticket/39610?cversion=1&cnum_hist=2 */ if ( version_compare( get_bloginfo( 'version' ), '4.7.3', '>=' ) && ( is_admin() || is_customize_preview() ) ) { require 'inc/nux/class-storefront-nux-admin.php'; require 'inc/nux/class-storefront-nux-guided-tour.php'; require 'inc/nux/class-storefront-nux-starter-content.php'; } /** * Note: Do not add any custom code here. Please use a custom plugin so that your customizations aren't lost during updates. * https://github.com/woocommerce/theme-customisations */
Close