External requests initiated by a WordPress server should be considered as security-sensitive. They may contain sensitive data which is stored in the files or in the database of the server. It’s important for the administrator of a WordPress server to understand what they contain and to which server they are sent.
WordPress makes it possible to block external requests by setting the WP_HTTP_BLOCK_EXTERNAL option to true. It’s then
possible to authorize requests to only a few servers using another option named WP_ACCESSIBLE_HOSTS.
There is a risk if you answered yes to any of those questions.
WP_HTTP_BLOCK_EXTERNAL is defined in wp-config.php. WP_HTTP_BLOCK_EXTERNAL is set to true. WP_ACCESSIBLE_HOSTS is configured to authorize requests to the servers you trust. define( 'WP_HTTP_BLOCK_EXTERNAL', false ); // Sensitive
define( 'WP_HTTP_BLOCK_EXTERNAL', true ); define( 'WP_ACCESSIBLE_HOSTS', 'api.wordpress.org' );