Extracting the passwords from a multiple file wordlist (sed & grep).
#3
Optimization?
Code:
type *.* | sed '/pass=/I!d;s/pass=\(.*$\)/\1/I;s/^[ \t]*//;s/[ \t]*$//' | sort | uniq -c | sort -nr | cut -c9- > wordlist_FINAL.txt
Reply


Messages In This Thread
RE: Extracting the passwords from a multiple file wordlist (sed & grep). - by M@LIK - 06-14-2012, 07:35 PM