When a user on our site looses his password and heads off to the Lost Password page we need to give him a new temporary password. I don't really mind how random this is, or if it matches all the "needed" strong password rules, all I want to do is give them a password that they can change later.

The application is a Web application written in C#. so I was thinking of being mean and going for the easy route of using part of a Guid. i.e.

Guid.NewGuid().ToString("d").Substring(1,8)

Suggesstions? thoughts?


Awesome! Knew you guys could help. I made use of @Rich B suggestion, but have removed the unwanted special characters since they are probably a little hectic for my user base!

Thanks for the help!

link|improve this question

78% accept rate
feedback

8 Answers

up vote 40 down vote accepted

there's always System.Web.Security.Membership.GeneratePassword(int length, int numberOfNonAlphanumericCharacters)

link|improve this answer
Didn't know that the Framework has such a method! Awesome! Will swap out my current code for this! – FryHard Sep 11 '08 at 4:19
4  
I found it after spending almost a day perfecting my own pw gen code. Image how I felt ;) – Rik Sep 13 '08 at 15:51
2  
AFAIK this method does not generate a password complying to a password policy on the domain so it's not suitable for every usage. – teebot.be Apr 14 '10 at 14:05
feedback
public string CreatePassword(int length)
        {
            string valid = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
            string res = "";
            Random rnd = new Random();
            while (0 < length--)
                res += valid[rnd.Next(valid.Length)];
            return res;
        }

This has a good benefit of being able to choose from a list of available characters for the generated password (ie. digits only, only uppercase or only lowercase etc.)

link|improve this answer
1  
this method (base 62) is superior than the GUID(base 16) on strength: an 8-char hex string is equivalent to a 4-5 char alphanumeric one – Jimmy Sep 10 '08 at 18:51
feedback

For this sort of password, I tend to use a system that's likely to generate more easily "used" passwords. Short, often made up of pronouncable fragments and a few numbers, and with no intercharacter ambiguity (is that a 0 or an O? A 1 or an I?). Something like

string[] words = { 'bur', 'ler', 'meh', 'ree' };
string word = "";

Random rnd = new Random();
for (i = 0; i < 3; i++)
   word += words[rnd.Next(words.length)]

int numbCount = rnd.Next(4);
for (i = 0; i < numbCount; i++)
  word += (2 + rnd.Next(7)).ToString();

return word;

(Typed right into the browser, so use only as guidelines. Also, add more words).

link|improve this answer
feedback

This is a lot larger, but I think it looks a little more comprehensive: http://www.obviex.com/Samples/Password.aspx

link|improve this answer
It turns out that there is support for this by the framework. So I am accepting that answer rather! – FryHard Sep 11 '08 at 4:20
feedback

I like to look at generating passwords, just like generating software keys. You should choose from an array of characters that follow a good practice. Take what @Radu094 answered with and modify it to follow good practice. Don't put every single letter in the character array. Some letters are harder to say or understand over the phone.

You should also consider using a checksum on the password that was generated to make sure that it was generated by you. A good way of accomplishing this is to use the LUHN algorithm.

link|improve this answer
feedback

I would say that method is as good as any other. It's short and does the job. There's an extremely low chance of a duplicate (substrings of GUIDs are not guaranteed to be unique) so maybe you want to start from somewhere in the middle instead of the beginning. You may also want to remove the dashes from the string with ToString("N").

link|improve this answer
Just give them a complete GUID -- they forgot their password, so make them type in "{92233c28-5cd4-4100-b6d9-3471256ce1ca}" a few times! – Danimal Sep 10 '08 at 18:50
I have to admit that I have been close doing this many times. Punishment will prevent them from looking the password in future. ;) – FryHard Sep 10 '08 at 19:10
feedback

I don't like the passwords that Membership.GeneratePassword() creates, as they're too ugly and have too many special characters.

This code generates a 10 digit not-too-ugly password.

string password = Guid.NewGuid().ToString().ToLower()
                      .Replace("-", "").Replace("l", "").Replace("1", "").Replace("o", "").Replace("0","")
                      .Substring(0,10);

Sure, I could use a Regex to do all the replaces but this is more readable and maintainable IMO.

link|improve this answer
feedback

I created this method similar to the available in the membership provider. This is usefull if you don't want to add the web reference in some applications.

It works great.

public static string GeneratePassword(int Lenght, int NonAlphaNumericChars)
    {
        string allowedChars = "abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNOPQRSTUVWXYZ0123456789";
        string allowedNonAlphaNum = "!@#$%^&*()_-+=[{]};:<>|./?";
        Random rd = new Random();

        if (NonAlphaNumericChars > Lenght || Lenght <= 0 || NonAlphaNumericChars < 0)
            throw new ArgumentOutOfRangeException();

            char[] pass = new char[Lenght];
            int[] pos = new int[Lenght];
            int i = 0, j = 0, temp = 0;
            bool flag = false;

            //Random the position values of the pos array for the string Pass
            while (i < Lenght - 1)
            {
                j = 0;
                flag = false;
                temp = rd.Next(0, Lenght);
                for (j = 0; j < Lenght; j++)
                    if (temp == pos[j])
                    {
                        flag = true;
                        j = Lenght;
                    }

                if (!flag)
                {
                    pos[i] = temp;
                    i++;
                }
            }

            //Random the AlphaNumericChars
            for (i = 0; i < Lenght - NonAlphaNumericChars; i++)
                pass[i] = allowedChars[rd.Next(0, allowedChars.Length)];

            //Random the NonAlphaNumericChars
            for (i = Lenght - NonAlphaNumericChars; i < Lenght; i++)
                pass[i] = allowedNonAlphaNum[rd.Next(0, allowedNonAlphaNum.Length)];

            //Set the sorted array values by the pos array for the rigth posistion
            char[] sorted = new char[Lenght];
            for (i = 0; i < Lenght; i++)
                sorted[i] = pass[pos[i]];

            string Pass = new String(sorted);

            return Pass;
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.