Skip to content

Commit 54851f8

Browse files
committed
[SECURITY] Don't pass User to newAction
This prevents information disclosure by passing an argument to this controlling
1 parent f589a93 commit 54851f8

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

Classes/Controller/NewController.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,12 @@ class NewController extends AbstractFrontendController
4141
/**
4242
* Render registration form
4343
*
44-
* @param User|null $user
4544
* @throws JsonException
4645
*/
47-
public function newAction(User $user = null): ResponseInterface
46+
public function newAction(): ResponseInterface
4847
{
4948
$this->view->assignMultiple(
5049
[
51-
'user' => $user,
5250
'allUserGroups' => $this->allUserGroups,
5351
]
5452
);

Documentation/Changelog/Index.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
Changelog
55
=========
66

7+
-
8+
:Version: 8.2.2
9+
:Date: 2025-05-20
10+
:Changes:
11+
* [BUGFIX] Security: Missing Hash Check for invitation controller - Invitation Templates must be updated (if a custom template is used)
12+
713
-
814
:Version: 8.2.1
915
:Date: 2024-11-11

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
'author_email' => '[email protected]',
1414
'author_company' => 'in2code.de - Wir leben TYPO3',
1515
'state' => 'stable',
16-
'version' => '8.2.1',
16+
'version' => '8.2.2',
1717
'constraints' => [
1818
'depends' => [
1919
'typo3' => '12.0.0-12.4.99',

0 commit comments

Comments
 (0)