Word Count

Word count can be used to gain a good list. If you want you specify certain parameters, you can do so with wc and find commands.

find . -type f
list all password list in directory
find . -type f -exec wc -l {} \; 
list word count of all files
find . -type f -exec wc -l {} \ | sort -nr;

Doing this can give us a better wordlist for our attacks

Last updated

Was this helpful?