Check my blogpost on crunch as mentioned in earlier post..
You will need to do more research on your own if you want to
move forward with this !
Printable View
Check my blogpost on crunch as mentioned in earlier post..
You will need to do more research on your own if you want to
move forward with this !
hi tape, ok will do thanks,,,,,,,,,,,, had a look and iv come up with this syntax
/pentest/passwords/crunch/crunch 8 8 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ -u | aircrack-ng -e TALKTALK-08CC00 -w - /root/Desktop/WPACRACK-13.ivs its seems to be working to me can you just tell me if that is rite? please thanks
Hi guys
Found leetify, works great!
Thank you all.
You should really look up the perl script that Gitsnik wrote (permute.pl)
it is exactly what you wanted.
http://www.backtrack-linux.org/forum...ad.php?t=19933
permute.pl and leetify the same thing no?
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:~#