From a22045b401ab251ecb4d23709fa398529eaf2de5 Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Thu, 30 Nov 2023 11:29:23 +0100 Subject: [PATCH 1/3] chg: [misp-galaxy] updated to the latest version --- app/files/misp-galaxy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/files/misp-galaxy b/app/files/misp-galaxy index 6868b6aae..dbbb075b1 160000 --- a/app/files/misp-galaxy +++ b/app/files/misp-galaxy @@ -1 +1 @@ -Subproject commit 6868b6aaedc2577f8579cea04549d08a6e794b81 +Subproject commit dbbb075b1c7154f27a096a35b483c826bdedec13 From 8840c75f77f615cea146890dbb653342abcc5379 Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Thu, 30 Nov 2023 11:29:56 +0100 Subject: [PATCH 2/3] chg: [warning-lists] updated to the latest version --- app/files/warninglists | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/files/warninglists b/app/files/warninglists index b777197a5..fbf99aae8 160000 --- a/app/files/warninglists +++ b/app/files/warninglists @@ -1 +1 @@ -Subproject commit b777197a5549870fabb1b187b339e3c7c56b63a1 +Subproject commit fbf99aae8f054072d0d3097f04d9f81e12835bdc From 0934ab658019e493fd560149017f48588b7524d6 Mon Sep 17 00:00:00 2001 From: Christophe Vandeplas Date: Fri, 1 Dec 2023 08:35:34 +0100 Subject: [PATCH 3/3] fix: [customauth] missing Class init fixes #9425 --- app/Controller/AppController.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Controller/AppController.php b/app/Controller/AppController.php index c0d4aad29..807da32cd 100755 --- a/app/Controller/AppController.php +++ b/app/Controller/AppController.php @@ -1149,6 +1149,7 @@ class AppController extends Controller $this->Session->write(AuthComponent::$sessionKey, $user['User']); if (Configure::read('MISP.log_auth')) { $this->Log = ClassRegistry::init('Log'); + $this->UserLoginProfile = ClassRegistry::init('UserLoginProfile'); $change = $this->UserLoginProfile->_getUserProfile(); $change['http_method'] = $_SERVER['REQUEST_METHOD']; $change['target'] = $this->request->here; @@ -1165,6 +1166,7 @@ class AppController extends Controller // User not authenticated correctly // reset the session information $this->Log = ClassRegistry::init('Log'); + $this->UserLoginProfile = ClassRegistry::init('UserLoginProfile'); $change = $this->UserLoginProfile->_getUserProfile(); $this->Log->createLogEntry( 'SYSTEM',