Manual:$wgPasswordAttemptThrottle/es

Category:MediaWiki configuration settings/es#PasswordAttemptThrottleCategory:MediaWiki configuration settings introduced in version 1.14.0/es#PasswordAttemptThrottleCategory:MediaWiki configuration settings still in use/es#PasswordAttemptThrottleCategory:Permission variables/es#PasswordAttemptThrottle
User rights, access control and monitoring: $wgPasswordAttemptThrottle
Limit password attempts per IP per address.
Introducido en la versión:1.14.0 (r38886)(git #6fcfa981)
Eliminado en la versión:aún se usa
Valores permitidos:(array)
Valor predeterminado:see below

Detalles

Limit password attempts to count attempts per seconds per IP per username.

$wgMainCacheType must be set to something other than CACHE_NONE for this setting to work.

When the throttle is hit, the AuthenticationAttemptThrottled hook gets called.

Para deshabilitarlo, agrega lo siguiente en LocalSettings.php:

$wgPasswordAttemptThrottle = [];
Versión de MediaWiki:
1.27

Multiple thresholds can be added. They will all be tested separately.


Default value

Versión de MediaWiki:
1.27
$wgPasswordAttemptThrottle = [
	// Short term limit.
	[ 'count' => 5, 'seconds' => 300 ],
	// Long term limit.
	// We need to balance the risk of somebody using this as a DoS attack to lock someone out of their account, and someone doing a brute force attack.
	[ 'count' => 150, 'seconds' => 60 * 60 * 48 ],
];
Versiones de MediaWiki:
1.14 1.26
/**
 * Limit password attempts to X attempts per Y seconds per IP per account.
 *
 * @warning Requires memcached.
 */
$wgPasswordAttemptThrottle = array( 'count' => 5, 'seconds' => 300 );

See also

Category:Throttling/es
Category:MediaWiki configuration settings/es Category:MediaWiki configuration settings introduced in version 1.14.0/es Category:MediaWiki configuration settings still in use/es Category:Permission variables/es Category:Throttling/es