The password is only visible to users that have access to read user yaml files, typically developers of the application itself.
The issue has been patched in 5.6.2, however any users registered during that time period and using the affected version range will still have the the password_confirmation value in their yaml files.
We recommend that affected users have their password reset. The following query can be entered into php artisan tinker and will output a list of affected emails:
Statamic\Facades\User::query()->whereNotNull('password_confirmation')->get()->map->email
Statamic\Facades\User::query()
->whereNotNull('password_confirmation')->get()
->each(fn ($user) => $user->remove('password_confirmation')->passwordHash(null)->save());
If you are committing user files to a public git repo, you may consider clearing the sensitive data from the git history. You can use the following links for details.
Users registering via the
user:register_formtag will have their password confirmation stored in plain text in their user file.Impact
This only affects sites matching all of the following conditions:
user:register_formtag.The password is only visible to users that have access to read user yaml files, typically developers of the application itself.
Patches
The issue has been patched in 5.6.2, however any users registered during that time period and using the affected version range will still have the the
password_confirmationvalue in their yaml files.We recommend that affected users have their password reset. The following query can be entered into
php artisan tinkerand will output a list of affected emails:The following can be entered into
tinkerand will clear both password_confirmation as well as their existing password. They will be required to reset their password before their next login attempt.References
If you are committing user files to a public git repo, you may consider clearing the sensitive data from the git history. You can use the following links for details.
References