Skip to content

Commit c829751

Browse files
committed
Merge branch '5.2' into 5.x
* 5.2: [Console] minor fix [Command] fix emojis messing up the line width [Validator] Avoid triggering the autoloader for user-input values Hardening Security - Unserialize DumpDataCollector Security hardening - Rate limiter [FrameworkBundle] ensure TestBrowserToken::$firewallName is serialized Fixed parsing deprecated definitions without message key improve login throttling rate limiter requirement message [HttpClient] remove using $http_response_header [Security] Handle properly 'auto' option for remember me cookie security
2 parents aa9853f + 88fb088 commit c829751

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RateLimiter/DefaultLoginRateLimiter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ protected function getLimiters(Request $request): array
4141
{
4242
return [
4343
$this->globalFactory->create($request->getClientIp()),
44-
$this->localFactory->create($request->attributes->get(Security::LAST_USERNAME).$request->getClientIp()),
44+
$this->localFactory->create($request->attributes->get(Security::LAST_USERNAME).'-'.$request->getClientIp()),
4545
];
4646
}
4747
}

0 commit comments

Comments
 (0)