dehashed-API
dehashed-API is awesome for parsing creds snagged with dehashed.com.
Search for leaked creds
dehashed_parser.py -e @domain.com --only-passwords -o output.txt
Cleaning up the output.txt
This will replace the comma separations with colons (for easier use with go365) and then sorts the list case-insensitively:
cat dirty-and-sorted.txt | sed 's/,/:/' | sort -f > dehashed-cleaned-and-sorted.txt