Doesn't requiring a password to have a number in it actually decrease the different combinations of characters that make up passwords? Consider this.
Each password can be, uh, lets say there are 60 characters on a keyboard that can go into a password (There's probably more, this is talking about case sensitive, with numbers and symbols allowed) So if a password requires that you have uh, lets say 6-8 different characters in it, then these are the amount of different passwords possible.
(60^6)+(60^7)+(60^8) = 1.70807616 × 10^14 (Thanks google calculator)
The amount of possible passwords. Okay, that's cool and all, but this is without the crazy number restrictions. If we go back, and count the possible passwords when limiting one digit to be a number 0-9, this is what happens. According to probability, the easiest way to do this is to subtract all the possibilities of passwords that don't contain numbers whatsoever. That would be 50^6 or 50^7 so on, so forth for each length of password. Because there are 60 possibilities for each character in the password, and there are 10 numbers, we just subtract 10.
((60^6)-(50^6) )+((60^7)-(50^7) )+((60^8)-(50^8) ) = 1.30948241 × 10^14
That's not extremely significant but it's still a loss. Which means that it would be easier to brute force a password of this type. Especially since most people just put a 1 at the end of their password when required to put numbers in. I know, no one REALLY brute forces passwords but this just makes it easier for them if they wanted to. It's best to just allow the person to put their password in and SUGGEST that they put a number in, or at least, it makes sense to me. If there is something wrong with my math tell me.
This is just something I was thinking about lol.
Also I was just thinking about how I never made anything for Newgrounds. I mean, I have a few movies that I only uploaded here but those are shit. I really should make something for Pico Day, even if it's small. I'll try and think of something.
And Shark City and that Bow Game are coming along. I'm gonna post a screenshot of Shark City. If you're gonna say something about how it looks like Miami Shark, go ahead and say it, but I don't really care.
Doomsday-One
It makes it slightly easier to brute force a password.
However, brute force takes an age anyway, and with websites such as Newgrounds performing a 3 failed attempts lockout rule, a brute force is completely non-viable.
What the number system does prevent is a dictionary attack. Many people just use an English word for a password, and that cuts out a lot of possibilities. Forcing people to add at least one number makes a dictionary attack impossible (unless they program it to put in [dictionaryword+"1"], but it still does a good job of protecting those who don't just put a one at the end).
Again, sites with an attempt limit still won't be beaten by it, but then it also makes more difficult several other strategies (eg. people who decide to put their password as their favourite food or game character, or those who would otherwise use the same password for every site).
Also, nice pic!