mirror of
git://develop.git.wordpress.org/
synced 2025-01-17 21:08:44 +01:00
Bootstrap/Load: Return a 403 error code when the recovery mode cookie is invalid or expired, or the exit recovery mode nonce check failed.
Props david.binda, spacedmonkey. Fixes #47479. git-svn-id: https://develop.svn.wordpress.org/trunk@45544 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
5e26728387
commit
2a039d481e
@ -239,7 +239,7 @@ class WP_Recovery_Mode {
|
||||
}
|
||||
|
||||
if ( ! isset( $_GET['_wpnonce'] ) || ! wp_verify_nonce( $_GET['_wpnonce'], self::EXIT_ACTION ) ) {
|
||||
wp_die( __( 'Exit recovery mode link expired.' ) );
|
||||
wp_die( __( 'Exit recovery mode link expired.' ), 403 );
|
||||
}
|
||||
|
||||
if ( ! $this->exit_recovery_mode() ) {
|
||||
@ -272,14 +272,16 @@ class WP_Recovery_Mode {
|
||||
if ( is_wp_error( $validated ) ) {
|
||||
$this->cookie_service->clear_cookie();
|
||||
|
||||
wp_die( $validated, '' );
|
||||
$validated->add_data( array( 'status' => 403 ) );
|
||||
wp_die( $validated );
|
||||
}
|
||||
|
||||
$session_id = $this->cookie_service->get_session_id_from_cookie();
|
||||
if ( is_wp_error( $session_id ) ) {
|
||||
$this->cookie_service->clear_cookie();
|
||||
|
||||
wp_die( $session_id, '' );
|
||||
$session_id->add_data( array( 'status' => 403 ) );
|
||||
wp_die( $session_id );
|
||||
}
|
||||
|
||||
$this->is_active = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user