Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request danielmiessler#680 from 5tr1x/patch-3
Create months.txt for i in `cat $1`; do echo ${i}; echo ${i}2019; echo ${i}2020; echo ${i}2021; echo ${i}2022; echo ${i}1; echo ${i}123; done >> n for i in `cat n`; do echo ${i}; echo ${i}'!'; echo ${i}'@'; echo ${i}'#'; echo ${i}'$'; echo ${i}'%'; echo ${i}'^'; echo ${i}'&'; echo ${i}'*'; echo ${i}'?'; done >> s hashcat s -r /usr/share/hashcat/rules/leetspeak.rule --stdout > hc wordlister --input s --perm 1 --min 4 --max 48 --leet &>/dev/null mv output.txt wl cat hc wl | sort -u > vvv wordlister --input vvv --perm 1 --min 4 --max 48 --cap --up &>/dev/null cat output.txt | sort -u > $2 rm n s hc wl vvv output.txt
- Loading branch information