Skip to content

Commit 0a64917

Browse files
committed
[SECURITY] Don't pass User to newAction
This prevents information disclosure by passing an argument to this controlling
1 parent 6a775e6 commit 0a64917

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
@@ -35,13 +35,11 @@ class NewController extends AbstractFrontendController
3535
/**
3636
* Render registration form
3737
*
38-
* @param User|null $user
3938
*/
40-
public function newAction(User $user = null): ResponseInterface
39+
public function newAction(): ResponseInterface
4140
{
4241
$this->view->assignMultiple(
4342
[
44-
'user' => $user,
4543
'allUserGroups' => $this->allUserGroups
4644
]
4745
);

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: 7.4.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: 7.4.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' => 'info@in2code.de',
1414
'author_company' => 'in2code.de - Wir leben TYPO3',
1515
'state' => 'stable',
16-
'version' => '7.4.1',
16+
'version' => '7.4.2',
1717
'constraints' => [
1818
'depends' => [
1919
'typo3' => '11.5.0-11.5.99',

0 commit comments

Comments
 (0)