1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
|
<?php
/**
* Reset login/signup throttling for a specified user and/or IP.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
* @ingroup Maintenance
*/
use MediaWiki\Auth\Throttler;
use MediaWiki\Logger\LoggerFactory;
use MediaWiki\MainConfigNames;
use Wikimedia\IPUtils;
// @codeCoverageIgnoreStart
require_once __DIR__ . '/Maintenance.php';
// @codeCoverageIgnoreEnd
/**
* Reset login/signup throttling for a specified user and/or IP.
*
* @ingroup Maintenance
* @since 1.32
*/
class ResetAuthenticationThrottle extends Maintenance {
public function __construct() {
parent::__construct();
$this->addDescription( 'Reset login/signup throttling for a specified user and/or IP. '
. "\n\n"
. 'When resetting signup or temp account, provide the IP. When resetting login (or both), provide '
. 'both username (as entered in login screen) and IP. An easy way to obtain them is '
. "the 'throttler' log channel." );
$this->addOption( 'login', 'Reset login throttle' );
$this->addOption( 'signup', 'Reset account creation throttle' );
$this->addOption( 'tempaccount', 'Reset temp account creation throttle' );
$this->addOption( 'tempaccountnameacquisition', 'Reset temp account name acquisition throttle' );
$this->addOption( 'user', 'Username to reset (when using --login)', false, true );
$this->addOption( 'ip', 'IP to reset', false, true );
}
public function execute() {
$forLogin = (bool)$this->getOption( 'login' );
$forSignup = (bool)$this->getOption( 'signup' );
$forTempAccount = (bool)$this->getOption( 'tempaccount' );
$forTempAccountNameAcquisition = (bool)$this->getOption( 'tempaccountnameacquisition' );
$username = $this->getOption( 'user' );
$ip = $this->getOption( 'ip' );
if ( !$forLogin && !$forSignup && !$forTempAccount && !$forTempAccountNameAcquisition ) {
$this->fatalError(
'At least one of --login, --signup, --tempaccount, or --tempaccountnameacquisition is required!'
);
} elseif ( $ip === null ) {
$this->fatalError( '--ip is required!' );
} elseif ( !IPUtils::isValid( $ip ) ) {
$this->fatalError( "Not a valid IP: $ip" );
}
if ( $forLogin ) {
$this->clearLoginThrottle( $username, $ip );
}
if ( $forSignup ) {
$this->clearSignupThrottle( $ip );
}
if ( $forTempAccount ) {
$this->clearTempAccountCreationThrottle( $ip );
}
if ( $forTempAccountNameAcquisition ) {
$this->clearTempAccountNameAcquisitionThrottle( $ip );
}
LoggerFactory::getInstance( 'throttler' )->info( 'Manually cleared {type} throttle', [
'type' => implode( ' and ', array_filter( [
$forLogin ? 'login' : null,
$forSignup ? 'signup' : null,
$forTempAccount ? 'tempaccount' : null,
$forTempAccountNameAcquisition ? 'tempaccountnameacquisition' : null,
] ) ),
'username' => $username,
'ipKey' => $ip,
] );
}
/**
* @param string|null $rawUsername
* @param string|null $ip
*/
protected function clearLoginThrottle( $rawUsername, $ip ) {
$this->output( 'Clearing login throttle...' );
$passwordAttemptThrottle = $this->getConfig()->get( MainConfigNames::PasswordAttemptThrottle );
if ( !$passwordAttemptThrottle ) {
$this->output( "none set\n" );
return;
}
$objectCacheFactory = $this->getServiceContainer()->getInstance()->getObjectCacheFactory();
$throttler = new Throttler( $passwordAttemptThrottle, [
'type' => 'password',
'cache' => $objectCacheFactory->getLocalClusterInstance(),
] );
if ( $rawUsername !== null ) {
$usernames = $this->getServiceContainer()->getAuthManager()
->normalizeUsername( $rawUsername );
if ( !$usernames ) {
$this->fatalError( "Not a valid username: $rawUsername" );
}
} else {
$usernames = [ null ];
}
foreach ( $usernames as $username ) {
$throttler->clear( $username, $ip );
}
$botPasswordThrottler = new Throttler( $passwordAttemptThrottle, [
'type' => 'botpassword',
'cache' => $objectCacheFactory->getLocalClusterInstance(),
] );
// @phan-suppress-next-line PhanPossiblyUndeclaredVariable T240141
$botPasswordThrottler->clear( $username, $ip );
$this->output( "done\n" );
}
/**
* @param string $ip
*/
protected function clearSignupThrottle( $ip ) {
$this->output( 'Clearing signup throttle...' );
$accountCreationThrottle = $this->getConfig()->get( MainConfigNames::AccountCreationThrottle );
if ( !is_array( $accountCreationThrottle ) ) {
$accountCreationThrottle = [ [
'count' => $accountCreationThrottle,
'seconds' => 86400,
] ];
}
if ( !$accountCreationThrottle ) {
$this->output( "none set\n" );
return;
}
$throttler = new Throttler( $accountCreationThrottle, [
'type' => 'acctcreate',
'cache' => $this->getServiceContainer()->getObjectCacheFactory()
->getLocalClusterInstance(),
] );
$throttler->clear( null, $ip );
$this->output( "done\n" );
}
protected function clearTempAccountCreationThrottle( string $ip ): void {
$this->output( 'Clearing temp account creation throttle...' );
$tempAccountCreationThrottle = $this->getConfig()->get( MainConfigNames::TempAccountCreationThrottle );
if ( !$tempAccountCreationThrottle ) {
$this->output( "none set\n" );
return;
}
$throttler = new Throttler( $tempAccountCreationThrottle, [
'type' => 'tempacctcreate',
'cache' => $this->getServiceContainer()->getObjectCacheFactory()
->getLocalClusterInstance(),
] );
$throttler->clear( null, $ip );
$this->output( "done\n" );
}
protected function clearTempAccountNameAcquisitionThrottle( string $ip ): void {
$this->output( 'Clearing temp account name acquisition throttle...' );
$tempAccountNameAcquisitionThrottle = $this->getConfig()->get(
MainConfigNames::TempAccountNameAcquisitionThrottle
);
if ( !$tempAccountNameAcquisitionThrottle ) {
$this->output( "none set\n" );
return;
}
$throttler = new Throttler( $tempAccountNameAcquisitionThrottle, [
'type' => 'tempacctnameacquisition',
'cache' => $this->getServiceContainer()->getObjectCacheFactory()
->getLocalClusterInstance(),
] );
$throttler->clear( null, $ip );
$this->output( "done\n" );
}
}
// @codeCoverageIgnoreStart
$maintClass = ResetAuthenticationThrottle::class;
require_once RUN_MAINTENANCE_IF_MAIN;
// @codeCoverageIgnoreEnd
|