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
|
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\Login;
use Matomo\Network\IP;
use Piwik\Piwik;
use Piwik\Settings\Setting;
use Piwik\Settings\FieldConfig;
use Piwik\Validators\IpRanges;
use Piwik\Auth\PasswordStrength;
/**
* Defines Settings for Login.
*/
class SystemSettings extends \Piwik\Settings\Plugin\SystemSettings
{
/** @var Setting */
public $enableBruteForceDetection;
/** @var Setting */
public $whitelisteBruteForceIps;
/** @var Setting */
public $blacklistedBruteForceIps;
/** @var Setting */
public $maxFailedLoginsPerMinutes;
/** @var Setting */
public $loginAttemptsTimeRange;
/** @var Setting */
public $enablePasswordStrengthCheck;
protected function init()
{
$this->enableBruteForceDetection = $this->createEnableBruteForceDetection();
$this->maxFailedLoginsPerMinutes = $this->createMaxFailedLoginsPerMinutes();
$this->loginAttemptsTimeRange = $this->createLoginAttemptsTimeRange();
$this->blacklistedBruteForceIps = $this->createBlacklistedBruteForceIps();
$this->whitelisteBruteForceIps = $this->createWhitelisteBruteForceIps();
$this->enablePasswordStrengthCheck = $this->createEnablePasswordStrengthCheck();
}
private function createEnablePasswordStrengthCheck(): Setting
{
return $this->makeSetting('enablePasswordStrengthCheck', $default = false, FieldConfig::TYPE_BOOL, function (FieldConfig $field) {
$field->title = Piwik::translate('Login_SettingPasswordStrengthCheck');
$PasswordStrengthChecker = new PasswordStrength($featureEnabled = true);
$field->inlineHelp = Piwik::translate('Login_SettingPasswordStrengthCheckHelp', [$PasswordStrengthChecker->getRulesAsHtmlList()]);
$field->uiControl = FieldConfig::UI_CONTROL_CHECKBOX;
});
}
private function createEnableBruteForceDetection()
{
return $this->makeSetting('enableBruteForceDetection', $default = true, FieldConfig::TYPE_BOOL, function (FieldConfig $field) {
$field->title = Piwik::translate('Login_SettingBruteForceEnable');
$field->description = Piwik::translate('Login_SettingBruteForceEnableHelp');
$field->uiControl = FieldConfig::UI_CONTROL_CHECKBOX;
});
}
private function createWhitelisteBruteForceIps()
{
return $this->makeSetting('whitelisteBruteForceIps', array(), FieldConfig::TYPE_ARRAY, function (FieldConfig $field) {
$field->title = Piwik::translate('Login_SettingBruteForceWhitelistIp');
$field->uiControl = FieldConfig::UI_CONTROL_TEXTAREA;
$field->description = Piwik::translate('Login_HelpIpRange', array('1.2.3.4/24', '1.2.3.*', '1.2.*.*')) . ' ' . Piwik::translate('Login_NotAllowListTakesPrecendence');
$field->validators[] = new IpRanges();
$field->transform = function ($value) {
if (empty($value)) {
return array();
}
$ips = array_map('trim', $value);
$ips = array_filter($ips, 'strlen');
$ips = array_values($ips);
return $ips;
};
});
}
private function createBlacklistedBruteForceIps()
{
return $this->makeSetting('blacklistedBruteForceIps', array(), FieldConfig::TYPE_ARRAY, function (FieldConfig $field) {
$field->title = Piwik::translate('Login_SettingBruteForceBlacklistIp');
$field->uiControl = FieldConfig::UI_CONTROL_TEXTAREA;
$field->description = Piwik::translate('Login_HelpIpRange', array('1.2.3.4/24', '1.2.3.*', '1.2.*.*')) . ' ' . Piwik::translate('Login_NotAllowListTakesPrecendence');
$field->validators[] = new IpRanges();
$field->transform = function ($value) {
if (empty($value)) {
return array();
}
$ips = array_map('trim', $value);
$ips = array_filter($ips, 'strlen');
$ips = array_values($ips);
return $ips;
};
});
}
private function createMaxFailedLoginsPerMinutes()
{
return $this->makeSetting('maxAllowedRetries', 20, FieldConfig::TYPE_INT, function (FieldConfig $field) {
$field->title = Piwik::translate('Login_SettingBruteForceMaxFailedLogins');
$field->uiControl = FieldConfig::UI_CONTROL_TEXT;
$field->description = Piwik::translate('Login_SettingBruteForceMaxFailedLoginsHelp');
});
}
private function createLoginAttemptsTimeRange()
{
return $this->makeSetting('allowedRetriesTimeRange', 60, FieldConfig::TYPE_INT, function (FieldConfig $field) {
$field->title = Piwik::translate('Login_SettingBruteForceTimeRange');
$field->description = Piwik::translate('Login_SettingBruteForceTimeRangeHelp');
$field->uiControl = FieldConfig::UI_CONTROL_TEXT;
});
}
public function isWhitelistedIp($ipAddress)
{
return $this->isIpInList($ipAddress, $this->whitelisteBruteForceIps->getValue());
}
public function isBlacklistedIp($ipAddress)
{
return $this->isIpInList($ipAddress, $this->blacklistedBruteForceIps->getValue());
}
private function isIpInList($ipAddress, $ips)
{
if (empty($ipAddress)) {
return false;
}
$ip = IP::fromStringIP($ipAddress);
if (empty($ips)) {
return false;
}
return $ip->isInRanges($ips);
}
}
|