Add filter for showing all password in health report #11850
+36
−11
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
edit: Build is failing on translations, I didn't add these yet because I saw some cli tools that are related to it but unsure how to use it. If this PR is going to be approved, please let me know what the process is to add translations.
Fixes: #5330
I'd like to see my password scores.
The health report only shows scores for weak passwords.
It's possible to add a password strength column to the passwords screen. It shows the strength as a color but unfortunately doesn't display the numeric score value which I'm interested in.
Password policies change over time because of hardware development. It helps to see the numeric scores to more accurately judge which passwords could be improved. And which ones are "degrading" over time.
There were 2 options, (1) to add it as a column to the password screen. (2) add it to the health report.
This PR adds it to the health report. I think it would be good to add it as a column to the password screen as well.
I implemented this feature by adding a new filter called show weak passwords only which defaults to true, which is the default behavior right now. Unchecking it shows all passwords.
Screenshots
Default behavior:
After unchecking show weak passwords only filter:
Testing strategy
Required 4 characters changed in 1 test module to account for
scoreReason
andscoreDetails
being defined now for Good and Excellent passwords.Type of change