|
Is it possible to assign strong requirement to a Active Directory domain group? In this case, the strong password would be 8 charters or longer, with at least one capital letter, one lower and one number. They also would need to change their password ...
Started by MaineRacing on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
At whatever level you assign your default....
You'll have to make a child domain for the users who need a different password.
You get one password policy in a domain in Active Directory with Windows Server 2003.
To segregate those user accounts.
|
|
Is there any benefit in salting passwords for a strong, unique (not used for other applications by the user) password?
Salting (as I am aware) protects against rainbow tables generated with a dictionary or common passwords. It also protects against an...
Started by Nona Urbiz on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
2) If users cannot choose their password, your strong password user might....
They might think a few words and numbers together.
This is something I would worry about if it is up to your user to choose a strong password.
|
|
Passwords have lots of downsides but they remain the only technically straightforward way of giving some authentication to users.
Lets talk hypothetically about an education-type system. Lots of people with passwords, lots of people forgetting their password...
Started by Will on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
You will have two issues:
Moved your security problem Your....
Do as they do at my university: run a password cracker and if the password is too weak both to have strong passwords and change them regularly.
Of paper with you.
|
Ask your Facebook Friends
|
There are many techniques to enforce strong passwords on website:
Requesting that passwords pass a regex of varying complexity Setting the password autonomously, so that casual users have a strong password Letting passwords expire etc. On the other hands...
Started by Sklivvz on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
Users don't generate a new, strong, unrelated password on each are not protecting financial....
The best compromise would be to show some kind of feedback to the user on how strong the password on a post-it stuck to their monitor.
|
|
Hi, Using t-sql, how can i find if all SQL Logins have strong passwords on SQL 2000 and 2005 servers?
Any help, much appreciated.
Regards Manjot
Started by Manjot on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Logins should be tied to a domain account, and the domain... .
The cracker:
// pseudocode ask you what your process is for passwords and password strength.
To force all users to change their passwords and enforce a password policy.
|
|
Hi.
I was wondering how can I generate a strong and secure password in C#.
I googled a little bit and saw this formula in Wikipedia, where L is the length of the password and N is the number of possible symbols:
...but I'm only 13 years old, I have no...
Started by Alon on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
It's quick and simple to implement/understand and isn't as much
For systems that don't allow user-generated passwords it's very easy, actually: Any password is as secure to maximize the set ....
password which is also strong.
|
|
Here is the .NET Regular Expression that I am using to create a strong password (which is not correct for my project password requirements):
(?=^.{15,25}$)(\d{2,}[a-z]{2,}[A-Z]{2,}[!@#$%&+~?]{2,})
Password requirements:
Minimum 15 Character (up to 25)...
Started by Supercox on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
This:
bool IsStrongPassword( String password ) { int upperCount = 0; int lowerCount = 0; int( password[ i ] ) ) upperCount++; else if ( Char.IsLetter( password[ i ] ) ) lowerCount++; else if ( Char.IsDigit( password[ i ] )....
|
|
Open source javascript algorithm to feedback user on the quality of the password he is choosing.
Started by flybywire on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Try this.
Here 's one and another
I know one open source Meter And this is the best .
|
|
Would like to create a strong password in C++. Any suggestions?
I assume it should use alpha (upper and lower), numeric, special characters.
It would be good to be able to specify a minimum length.
It would be great to avoid characters that are hard to...
Started by jm on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
It includes both pronounceable....
(Web-only, sadly)
APG (Automated Password Generator).
My favorite generator is here , and it provides the features you're talking about .
It also won't do the similar character password bit though, sadly.
|
|
Is there a jQuery project out there, that create on of these "Password-strength-meters" right by a password box and updates the strength-bar when something is typed into the field?
Do you know any good ones?
Started by Sebastian Hoitz on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
What kind....
Here's a comprehensive list:
http://www.webresourcesdepot.com/10-password-strength-meter-scripts-for-a-better-registration-interface/
http://phiras.wordpress.com/2007/04/08/password-strength-meter-a-jquery-plugin/
Pretty simple implementation.
|