Simple password checker & generator - passwordbotapp.com.
I wanted to make an online password generator, which would match those needs:
- Easy to use
- Minimalistic UI
- No tracking at all
- No ads
- Understandable generator function
The score calculation is based on my own preferences: a 16-chars password made of:
- 4 lowercase letters
- 4 uppercase letters
- 4 digits
- 4 special characters
Each character has the same weight.
It is a basic way to calculate the password strength, but for now there are no unquestioned way to do so - entropy calculation is one of the most discussed methods, but it is not reliable in all cases, as it does not take the user behavior into account.
The avoid similar characters option, when enabled, removes the following when generating a password:
l
,I
and1
(lowercase L, uppercase i and digit one)O
and0
(uppercase o and digit zero)S
and5
(uppercase s and digit five)
Checkout the project, then run:
$ npm install
and:
$ npm run watch
To build the projet in dist/
when a change occurs.
Version | Date | Notes |
---|---|---|
1.3.2 |
2022-02-26 | Revamp build & move to ES6 |
1.3.1 |
2016-04-25 | Removes dependencies to CDNs |
1.3.0 |
2016-02-17 | Adds Avoid similar characters option |
1.2.0 |
2015-12-22 | Responsive behavior |
1.1.1 |
2015-08-26 | Fix cookie duration |
1.1.0 |
2015-08-26 | Allows the user to save his options |
1.0.0 |
2015-08-23 | Initial version |
This project is released under the MIT License.