4.3 Identity Management Testing
Last updated
Evidence:
βVerify that the identity requirements for user registration are aligned with business and security requirements.
Validate the registration process.
Evidence:
Determine which roles are able to provision users and what sort of accounts they can provision.
Evidence:
Review processes that pertain to user identification looking for ways to enumerate accounts.
To obtain a wordlist of existing and not existing emails, you can execute the following command
Evidence:
Check if there is any kind of account name structure like βJohn.deer@email.comβ or βjdeer@email.comβ that could lead to user name enumeration.
Evidence:
Last updated
ββcat registered_emails.txt | awk -F "@" '{print $1"@"$2"\n"$1"donotexist@"$2}' | xclip -sel clipboardββ