Skip to content

Commit c674b19

Browse files
feat: make TrustedDeviceTokenStorage conform to ResetInterface
In certain scenarios, TrustedDeviceTokenStorage might not be re-instanciated between requests. That's the case when multiple requests are handled by a single worker, like when serving the application with RoadRunner or with FrankenPHP. In that case, the trusted_device cookie leak from a request to another, and break the feature entirely. By implementing ResetInterface, the storage is now properly reseted between requests
1 parent e4bf04e commit c674b19

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/trusted-device/Security/TwoFactor/Trusted/TrustedDeviceTokenStorage.php

+9-1
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,16 @@
77
use RuntimeException;
88
use Symfony\Component\HttpFoundation\Request;
99
use Symfony\Component\HttpFoundation\RequestStack;
10+
use Symfony\Contracts\Service\ResetInterface;
11+
1012
use function array_map;
1113
use function explode;
1214
use function implode;
1315

1416
/**
1517
* @final
1618
*/
17-
class TrustedDeviceTokenStorage
19+
class TrustedDeviceTokenStorage implements ResetInterface
1820
{
1921
private const TOKEN_DELIMITER = ';';
2022

@@ -100,6 +102,12 @@ public function clearTrustedToken(string $username, string $firewall): void
100102
$this->updateCookie = true;
101103
}
102104

105+
public function reset(): void
106+
{
107+
$this->updateCookie = false;
108+
$this->trustedTokenList = null;
109+
}
110+
103111
/**
104112
* @return TrustedDeviceToken[]
105113
*/

0 commit comments

Comments
 (0)