Generate numeric password dictionary from terminal
Is possible to generate a list of numeric password on file directly from terminal. Just use a for cycle : for ((i=1;i<100000000;i++)); do printf '%08d\n' "$i"; done > dic.txt The process is very long and the file generated will be a bit... large. :) Change the value of the cycle if you want start from a determinate sequence. The generated dictionary can be good for a simple WPA password cracking.