|
|
|
|
|
by rockland
2201 days ago
|
|
For every character in the password, you have 26 possible letters to choose from in an English alphabet. Brute forcing this, you would have to try every combination. Which means for a four-letter long password:
26x26x26x26 = 456 976 possible passwords. For a 10 letter long password:
26^10 = 141167095653376 possible passwords. |
|
Clarifying it further is “number of days to brute-force if you can try (eg) 10k requests/sec”.