Does anyone have a nice little password generator they would like to share.
I could write one but I’m sure there are a few out there and it would save time
not reinventing the wheel.
No, but I have a class that attempts to check for insecure passwords. It compares a password against the list of 10,000 most common passwords by turning it into a regular expression. The passwords “passw0rd”, “pa55word” and “p455555word” would all be unacceptable as variations of “password”.
It also lets you set rules and compare it to those rules. For example, you could specify that it has to have any three of: 1 uppercase, 1 lowercase, 1 symbol, 1 number.
This was part of my XDC package. Let me know if you’d like to see it.
Iv’e got one if you want it.
Have a look at it first here on my website then if you can the code I’ll send it
http://www.real-soft.co.uk
By the way…its at the bottom of the page
kem… your password checker sound cool
[quote=87475:@Kem Tekinay]No, but I have a class that attempts to check for insecure passwords. It compares a password against the list of 10,000 most common passwords by turning it into a regular expression. The passwords “passw0rd”, “pa55word” and “p455555word” would all be unacceptable as variations of “password”.
It also lets you set rules and compare it to those rules. For example, you could specify that it has to have any three of: 1 uppercase, 1 lowercase, 1 symbol, 1 number.
This was part of my XDC package. Let me know if you’d like to see it.[/quote]
I’d be interested but to convert to PHP but would like to see it.
I believe you’ve given us the code here too.
Advice on password substitutions
I was feeling generous this morning…
So here is a complete source code to a form that will generate, validate and check passwords…
Xojo Source code for Password Generator
Yes, although I’m pretty sure I made changes after that. Here is the current project.
https://dl.dropboxusercontent.com/u/26920684/M_CheckPassword.zip
Thank you for sharing these, Stuart, Dave, and Kem.
Thanks to you all. Very Helpful and will save a lot of time.
Not sure what one to check as answered as there all good.