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

find . -type f -exec wc -l {} \;

find . -type f -exec wc -l {} \ | sort -nr;

Doing this can give us a better wordlist for our attacks
Last updated
Was this helpful?