Identifying Users
MITRE ATT&CK, Reconnaissance, Technique T1589
Creating Username Lists
Helpful Commands to Create a List
# Grep a list of emails from a .JSON (or any other) file:
grep -E -o "\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,6}\b" file.txt
# Quick awk magic to add "@client.com" after every username:
awk '{print $0 "@client.com"}' usernames.txt
# Quick sed magic to remove "@client.com" after every email:
sed 's/@.*//' emails.txtEmail Lookup Services
Using Tools Available on GitHub
Locating Breached Credentials
References
Last updated