You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default the column 'selector' created with collation '*_ci', for example 'utf8mb4_unicode_ci'.
This leads to a decrease in the code's resistance to brute-force attacks.
Why
Collation '*_ci': this causes the differences in uppercase and lowercase letters to be ignored when fetching from the database by this field.
What to do
Explicitly set collation without ignoring letter case for ResetPasswordRequestTrait::selector.