permute.pl will do a lot more that leetify will.
Give it a shot based on a single word and see the difference in number of varions in the output.
Leetify will simply change e to 3, a to 4 etc etc
permute will create all possible differences of the word, so for instance the word 'password'
will yield 5760 possibilities ;
Code:
root@bt:~# echo password | ./permute.pl | wc -l
5760
root@bt:~#
Code:
root@bt:~# echo password | ./permute.pl | head -n 10
password
passworD
passwoRd
passwoRD
passwOrd
passwOrD
passwORd
passwORD
passw0rd
passw0rD
root@bt:~#
.
.
root@bt:~# echo password | ./permute.pl | tail -n 10
PA$$\/\/oRd
PA$$\/\/oRD
PA$$\/\/Ord
PA$$\/\/OrD
PA$$\/\/ORd
PA$$\/\/ORD
PA$$\/\/0rd
PA$$\/\/0rD
PA$$\/\/0Rd
PA$$\/\/0RD
root@bt:~#