Security: Additional translations of salt default phrase.
Translate the default salt value "put your unique phrase here" in additional locations in which it is used. This further ensures that the default phrase is considered an error in non-english translations of `wp-config.php`. Follow-up to [54249]. Props peterwilsoncc, audrasjb, JeffPaul. Fixes #55937. Built from https://develop.svn.wordpress.org/trunk@54379 git-svn-id: http://core.svn.wordpress.org/trunk@53938 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
566caa07ae
commit
d7e3d069a1
|
@ -37,7 +37,17 @@ if ( ! defined( 'WP_ALLOW_REPAIR' ) || ! WP_ALLOW_REPAIR ) {
|
|||
);
|
||||
echo "</p><p><code>define('WP_ALLOW_REPAIR', true);</code></p>";
|
||||
|
||||
$default_key = __( 'put your unique phrase here' );
|
||||
$default_keys = array_unique(
|
||||
array(
|
||||
'put your unique phrase here',
|
||||
/*
|
||||
* translators: This string should only be translated if wp-config-sample.php is localized.
|
||||
* You can check the localized release package or
|
||||
* https://i18n.svn.wordpress.org/<locale code>/branches/<wp version>/dist/wp-config-sample.php
|
||||
*/
|
||||
__( 'put your unique phrase here' ),
|
||||
)
|
||||
);
|
||||
$missing_key = false;
|
||||
$duplicated_keys = array();
|
||||
|
||||
|
@ -51,10 +61,12 @@ if ( ! defined( 'WP_ALLOW_REPAIR' ) || ! WP_ALLOW_REPAIR ) {
|
|||
}
|
||||
}
|
||||
|
||||
// If at least one key uses the default value, consider it duplicated.
|
||||
// If at least one key uses a default value, consider it duplicated.
|
||||
foreach ( $default_keys as $default_key ) {
|
||||
if ( isset( $duplicated_keys[ $default_key ] ) ) {
|
||||
$duplicated_keys[ $default_key ] = true;
|
||||
}
|
||||
}
|
||||
|
||||
// Weed out all unique, non-default values.
|
||||
$duplicated_keys = array_filter( $duplicated_keys );
|
||||
|
|
|
@ -198,7 +198,19 @@ final class WP_Recovery_Mode_Cookie_Service {
|
|||
* @return string|false The hashed $data, or false on failure.
|
||||
*/
|
||||
private function recovery_mode_hash( $data ) {
|
||||
if ( ! defined( 'AUTH_KEY' ) || AUTH_KEY === __( 'put your unique phrase here' ) ) {
|
||||
$default_keys = array_unique(
|
||||
array(
|
||||
'put your unique phrase here',
|
||||
/*
|
||||
* translators: This string should only be translated if wp-config-sample.php is localized.
|
||||
* You can check the localized release package or
|
||||
* https://i18n.svn.wordpress.org/<locale code>/branches/<wp version>/dist/wp-config-sample.php
|
||||
*/
|
||||
__( 'put your unique phrase here' ),
|
||||
)
|
||||
);
|
||||
|
||||
if ( ! defined( 'AUTH_KEY' ) || in_array( AUTH_KEY, $default_keys, true ) ) {
|
||||
$auth_key = get_site_option( 'recovery_mode_auth_key' );
|
||||
|
||||
if ( ! $auth_key ) {
|
||||
|
@ -213,7 +225,7 @@ final class WP_Recovery_Mode_Cookie_Service {
|
|||
$auth_key = AUTH_KEY;
|
||||
}
|
||||
|
||||
if ( ! defined( 'AUTH_SALT' ) || AUTH_SALT === 'put your unique phrase here' || AUTH_SALT === $auth_key ) {
|
||||
if ( ! defined( 'AUTH_SALT' ) || in_array( AUTH_SALT, $default_keys, true ) || AUTH_SALT === $auth_key ) {
|
||||
$auth_salt = get_site_option( 'recovery_mode_auth_salt' );
|
||||
|
||||
if ( ! $auth_salt ) {
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.1-beta2-54378';
|
||||
$wp_version = '6.1-beta2-54379';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue