Closed rosamarsky closed 2 years ago
I believe that that token is generated here https://github.com/laravel-doctrine/orm/blob/2824a8516ac8b5b812d7195f01c7c64470abc179/src/Auth/Passwords/DoctrineTokenRepository.php#L213-L221
which just results on a different Hash/Token that laravel which is likely using there built in Hash Facade
ah laravel are building it the same but are pushing the token through the hasher before it goes into the database
Happy to take PR to fix this, but it might be considered a BC, since it would invalidate all existing tokens
I used the default Illuminate Password Broker before I found in your documentation This page After changing
PasswordResetServiceProvider
in config/app.php I checked the tablepassword_resets
and saw not hashed tokens. It looks really unsafe.Package version 1.4, Laravel version 8.0