bobbyb1980 Posted October 7, 2011 Share Posted October 7, 2011 Hello all. I was wondering if anyone knows where I can find a password list of all combinations of numbers that are 10 digits? I'm seeing more and more passwords that are numerical. I was thinking I could either find or create a list of all possible 10 digit numbers and this could be used to either test against routers or WPA keys. Ideas? Quote Link to comment Share on other sites More sharing options...
Jason Cooper Posted October 7, 2011 Share Posted October 7, 2011 perl -e '$_=0; while($_<10000000000){print "$_\n";$_++};' > numbList.txt or perl -e '$_=0; while($_<10000000000){print "0"x(10-length("$_"))."$_"."\n";$_++};' > numbList0padd.txt Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.