Number of Possible Passwords? 10-23-2012, 01:55 PM
#1
So on the Dream PC thread I said that cracking passwords can be really REALLY quick these days by getting multiple GPUs etc. So that got me thinking: What is the number of possible passwords?
So I set myself some rules:
So I start by using "abc"
So I made this java program: And the result was 884545.
Next Im gonna do 4 character passwords![Smile Smile](https://sinister.ly/images/smilies/set/smile.png)
Ok so as before I used abcd
So there are 83192545 combinations for 4 character passwords.
So I set myself some rules:
- Can use any combination of these 96 characters and they can be used multiple times:
(PS. Notice that it includes space)Code:abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 !"£$%^&*()_+¬-={}~@:?><,./;'#][\|
- Minimum of 3 characters and a maxiumum of 30 characters in the password.
- And I'll use Text Mechanic to check for dupes and such: http://textmechanic.com/
So I start by using "abc"
- aaa
- aab
- abb
- aba
- abc
So I made this java program:
Spoiler:
Next Im gonna do 4 character passwords
![Smile Smile](https://sinister.ly/images/smilies/set/smile.png)
Ok so as before I used abcd
- aaaa
- aaab
- aabb
- abbb
- abbc
- abcc
- abcd
Code:
95 + (95*95) + (95*95) + (95*95) + (95*95*95) + (95*95*95) + (95*95*95*95) = 83192545