Compare commits

...

9 Commits

Author SHA1 Message Date
Yuri Kuznetsov f3ee5c654b 8.3.4 2024-07-01 16:35:35 +03:00
Yuri Kuznetsov 1a413cb54e check failed code attempts in a separate hook 2024-07-01 16:23:37 +03:00
Yuri Kuznetsov 41bcaf50c4 fix attachment-multiple render 2024-06-28 18:55:21 +03:00
Yuri Kuznetsov bc7d9443b1 8.3.3 2024-06-27 15:54:59 +03:00
Yuri Kuznetsov 8188dc065b fix row actions returning undefined 2024-06-27 15:29:30 +03:00
Yuri Kuznetsov a2025d0a89 fix props not initiated 2024-06-27 15:17:04 +03:00
Yuri Kuznetsov 1d31637c2e migrate: rebuild before each script 2024-06-27 11:53:13 +03:00
Yuri Kuznetsov 2ba808c371 auth limit denial reason check 2024-06-26 21:54:15 +03:00
Yuri Kuznetsov 6bce395daf fix dropdown empty 2024-06-26 13:51:19 +03:00
11 changed files with 137 additions and 24 deletions
@@ -68,8 +68,6 @@ class FailedAttemptsLimit implements BeforeLogin
return;
}
$isSecondStep = $request->getHeader('Espo-Authorization-Code') !== null;
$failedAttemptsPeriod = $this->configDataProvider->getFailedAttemptsPeriod();
$maxFailedAttempts = $this->configDataProvider->getMaxFailedAttemptNumber();
@@ -87,16 +85,9 @@ class FailedAttemptsLimit implements BeforeLogin
$where = [
'requestTime>' => $requestTimeFrom->format('U'),
'isDenied' => true,
'ipAddress' => $ipAddress,
];
if ($isSecondStep) {
$where['username'] = $data->getUsername();
}
if (!$isSecondStep) {
$where['ipAddress'] = $ipAddress;
}
$wasFailed = (bool) $this->entityManager
->getRDBRepository(AuthLogRecord::ENTITY_TYPE)
->select(['id'])
@@ -116,12 +107,6 @@ class FailedAttemptsLimit implements BeforeLogin
return;
}
if ($isSecondStep) {
$username = $data->getUsername() ?? '';
throw new Forbidden("Max failed 2FA login attempts exceeded for username '$username'.");
}
throw new Forbidden("Max failed login attempts exceeded for IP address $ipAddress.");
}
}
@@ -0,0 +1,115 @@
<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM Open Source CRM application.
* Copyright (C) 2014-2024 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko
* Website: https://www.espocrm.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
namespace Espo\Core\Authentication\Hook\Hooks;
use Espo\Core\Api\Request;
use Espo\Core\Authentication\AuthenticationData;
use Espo\Core\Authentication\ConfigDataProvider;
use Espo\Core\Authentication\Hook\BeforeLogin;
use Espo\Core\Exceptions\Forbidden;
use Espo\Entities\AuthLogRecord;
use Espo\ORM\EntityManager;
use DateTime;
use Exception;
use RuntimeException;
/**
* @noinspection PhpUnused
*/
class FailedCodeAttemptsLimit implements BeforeLogin
{
public function __construct(
private ConfigDataProvider $configDataProvider,
private EntityManager $entityManager,
) {}
/**
* @throws Forbidden
*/
public function process(AuthenticationData $data, Request $request): void
{
if (
$request->getHeader('Espo-Authorization-Code') === null ||
$this->configDataProvider->isAuthLogDisabled()
) {
return;
}
$isByTokenOnly = !$data->getMethod() && $request->getHeader('Espo-Authorization-By-Token') === 'true';
if ($isByTokenOnly) {
return;
}
$failedAttemptsPeriod = $this->configDataProvider->getFailedAttemptsPeriod();
$maxFailedAttempts = $this->configDataProvider->getMaxFailedAttemptNumber();
$requestTime = intval($request->getServerParam('REQUEST_TIME_FLOAT'));
try {
$requestTimeFrom = (new DateTime('@' . $requestTime))->modify('-' . $failedAttemptsPeriod);
}
catch (Exception $e) {
throw new RuntimeException($e->getMessage());
}
$where = [
'requestTime>' => $requestTimeFrom->format('U'),
'isDenied' => true,
'username' => $data->getUsername(),
'denialReason' => AuthLogRecord::DENIAL_REASON_WRONG_CODE,
];
$wasFailed = (bool) $this->entityManager
->getRDBRepository(AuthLogRecord::ENTITY_TYPE)
->select(['id'])
->where($where)
->findOne();
if (!$wasFailed) {
return;
}
$failAttemptCount = $this->entityManager
->getRDBRepository(AuthLogRecord::ENTITY_TYPE)
->where($where)
->count();
if ($failAttemptCount <= $maxFailedAttempts) {
return;
}
$username = $data->getUsername() ?? '';
throw new Forbidden("Max failed 2FA login attempts exceeded for username '$username'.");
}
}
@@ -77,8 +77,8 @@ abstract class Base
];
private ZipArchive $zipUtil;
private ?DatabaseHelper $databaseHelper;
private ?Helper $helper;
private ?DatabaseHelper $databaseHelper = null;
private ?Helper $helper = null;
public function __construct(
private Container $container,
@@ -51,6 +51,13 @@ class AfterUpgradeRunner
throw new RuntimeException("No after-upgrade script $step.");
}
try {
$this->dataManager->rebuild();
}
catch (Error $e) {
throw new RuntimeException("Error while rebuild: " . $e->getMessage());
}
/** @var Script $script */
$script = $this->injectableFactory->createWith($className, ['isUpgrade' => false]);
$script->run();
@@ -1,6 +1,7 @@
{
"beforeLoginHookClassNameList": [
"Espo\\Core\\Authentication\\Hook\\Hooks\\FailedAttemptsLimit"
"Espo\\Core\\Authentication\\Hook\\Hooks\\FailedAttemptsLimit",
"Espo\\Core\\Authentication\\Hook\\Hooks\\FailedCodeAttemptsLimit"
],
"onLoginHookClassNameList": [
"Espo\\Core\\Authentication\\Hook\\Hooks\\IpAddressWhitelist"
+1 -1
View File
@@ -505,7 +505,7 @@ class Dialog {
$main.append($button);
});
const allDdItemsHidden = this.dropdownItemList.filter(o => !o.hidden).length === 0;
const allDdItemsHidden = this.dropdownItemList.filter(o => o && !o.hidden).length === 0;
const $dropdown = $('<div>')
.addClass('btn-group')
@@ -762,11 +762,12 @@ class AttachmentMultipleFieldView extends BaseFieldView {
if (this.isDetailMode() || this.isListMode()) {
const nameHash = this.nameHash;
const typeHash = this.model.get(this.typeHashName) || {};
const ids = /** @type {string[]} */this.model.get(this.idsName) || [];
const previews = [];
const names = [];
for (const id in nameHash) {
for (const id of ids) {
const type = typeHash[id] || false;
const name = nameHash[id];
@@ -43,6 +43,8 @@ class RelationshipUnlinkOnlyActionsView extends RelationshipActionsView {
},
];
}
return [];
}
}
@@ -43,6 +43,8 @@ class RemoveOnlyRowActionsView extends DefaultRowActionsView {
}
];
}
return [];
}
}
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "espocrm",
"version": "8.3.2",
"version": "8.3.4",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "espocrm",
"version": "8.3.2",
"version": "8.3.4",
"hasInstallScript": true,
"license": "AGPL-3.0-or-later",
"dependencies": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "espocrm",
"version": "8.3.2",
"version": "8.3.4",
"description": "Open-source CRM.",
"repository": {
"type": "git",