Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm currently designing a system that requires an admin to log in using a password. For certain reasons, it is difficult to set this password during installation, but it can be changed later.

My idea is this: If I leave the default password empty, it is so horridly insecure that every admin is going to fix this as soon as possible. If I were to use some kind of predefined password instead, admins may think "ah.. nobody would think I've got 'defaultpassword' as my password so it's not very important to change."

So the basic thought is to make it so terrible that even the most lazy people are going to do something about it.

Edit: In my case, it is impossible to have the password changed on first login. It has to be manually edited in an XML file. It's a bad environment, but it's difficult to change, that's why I'm asking. I'd love to have a solution like for instance Windows does.

Edit: I never touched this topic, so I was not familiar with the related issues. I proposed such a crazy idea! I see I still have to learn a lot. I'll leave this open for a while, then accept the most voted answer. Thanks for the insight!

share|improve this question
1  
Or set it to something completely random that you display to them during installation...? I don't think a blank password is ever a good idea. – CaffGeek Apr 23 '10 at 16:19
3  
@Chad Please add it as an answer. – mafu Apr 23 '10 at 16:23
1  
Don't feel bad about not knowing how much you didn't know. Feel good about letting the world learn with you. – Mark Ransom Apr 23 '10 at 16:40

10 Answers

up vote 28 down vote accepted

I would never advise setting a default password to be empty, especially for an administrator.

As another solution along the same lines, create a generated high entropy, cryptic (my example is nowhere cryptic, but it's an example) first-time password so your user will think:

"Wow, f45zaH67 is something I'll never remember, let me go ahead and change that"

share|improve this answer
You mean a generated instead of a fixed password? Sounds very reasonable. – mafu Apr 23 '10 at 16:22
1  
Yeah, a randomly generated strong password. My example was poor, I pretty much just laid my hands all over the keyboard. – Anthony Forloney Apr 23 '10 at 16:23
2  
I hate those type of passwords, I know I always change mine :) – Strawberry Apr 23 '10 at 16:25
1  
Agreed and I am a firm believer that the more strongly encrypted, the more likely they'll change it. – Anthony Forloney Apr 23 '10 at 16:30
2  
@Anthony: I assume you mean "more random-looking"... – BlueRaja - Danny Pflughoeft Apr 23 '10 at 16:36
show 8 more comments

Microsoft used a blank default password for the administrative account "sa" for SQL Server. The "sa" account has complete control over the database and can access cmd.exe using xp_cmdshell(). You can login to the database over port 1433. Worms spread by using the sa account with a blank password, over the years many databases where hacked. Finely Microsoft addressed the issue by forcing the user to set a password on install.

Never have a default password (especially if it allows remote code execution)

share|improve this answer
Good example to illustrate. – mafu Apr 23 '10 at 16:29
I disagree - blank is not significantly worse than any other string as a default. If Microsoft has used "j'?17KONifylbjn0" as the default "sa" password and admins didn't change it after install, it would have been just as exploitable. – Andrew Medico Apr 23 '10 at 17:52
2  
@Andrew Medico Having a hardcoded password of junk is equally wormable. I do not understand your point or how it relates to my answer. Or the -1 you gave me (which took away my nice answer badge!) – Rook Apr 23 '10 at 19:25
Any fixed default password is bad, and twenty random characters (normally a very strong password) is not much better than blank. Both are very bad. A randomly generated "default" password would work much better. – David Thornley Apr 23 '10 at 20:01
2  
@Lord Torgamus W00t A Spinal Tap Reference win. – Rook Apr 23 '10 at 20:19
show 3 more comments

Can't you just force them to change it on first login?

Based on your edit...

I would opt for randomly generating a password something (as already suggested). The benefit of this is not only should it make the admin change it, but if they don't, you can be sure it ain't gona be easy to guess. Either way the account will be more secure than it would with a blank password (big no-no)

share|improve this answer
(see edited question) – mafu Apr 23 '10 at 16:26
If you can't force them to change on first login than you need a better design. – Joshua Apr 23 '10 at 17:45
@Joshua If it were that easy, I would not ask ;) – mafu Apr 23 '10 at 20:04
The problem with forcing to change on first login is that software frequently gets deployed without someone logging in. – vy32 Apr 25 '10 at 18:08
1  
Not true. You might have an appliance or an embedded system that gets deployed but never used. The first person to log in may be the attacker. – vy32 Apr 26 '10 at 3:51
show 1 more comment

As requested, added as an answer.

Or set it to something completely random that you display to them during installation...? I don't think a blank password is ever a good idea.

share|improve this answer
1  
User clicks next next next and skips over password – Pyrolistical Apr 23 '10 at 18:24
@Pyrolistical: Said user is incompetent and a danger to themselves and others. Why exactly would you want them to see the admin password to anything in the first place? – Nicholas Knight Aug 12 '10 at 15:36

Its interesting to note that Windows was changed awhile back so you can't remote desktop in to another machine if the account you're using has a blank password.

Any default password is a bad password, blank or no. The admin needs to change it. Detecting that an account has the default password and limiting its access in a few ways is one way to encourage users to change their password, or otherwise partially secure their system for them.

share|improve this answer

Wow ... do admins really command such little respect? It seems as if the standard assumption is that they WILL screw things up, no?

share|improve this answer
Admins are, usually, still human, and humans tend to be lazy if they can. – mafu Apr 23 '10 at 17:16
Not every administrator knows what they are doing. An admin could be in a rush or just not understand the threats that he faces. – Rook Apr 23 '10 at 17:22
1  
"It seems as if the standard assumption is that they WILL screw things up" They WILL screw things up. – Longpoke Apr 23 '10 at 19:54
1  
Besides humans being lazy, not all software is installed and used by paid administrators. Might be a home user, or in a small business it could be someone whose main responsibility is not system administration. – Qwertie Apr 23 '10 at 20:44
Maybe what you really need is some sort of UAC! Are you sure you don't want to use a password? Are really sure?? Are you super duper sure???? – NOTadmin Apr 24 '10 at 3:02

just don't use username/password credentials but look for some other ways to authenticate

share|improve this answer
If it were that easy... :) – mafu Apr 25 '10 at 19:04
sometimes there are some cool reallife authentication tokens just for end users to use, here in Belgium we all have a E-Identity card with a certificate that is under a national root.... – Tim Mahy Apr 26 '10 at 19:14

Since answering your own questions is encouraged on SO, I'm going to present an idea I though of. But especially after reading the other answers on this thread, I don't have much confidence in this solution.

Block login, or at least pop up a warning message (optionally rendering the application in annoying neon-yellow colors) until the default password was changed.

share|improve this answer

How about setting it to a random password (as somebody mentioned) and REQUIRING the user to change it before proceeding?

share|improve this answer
The "requiring" part is impossible, as stated in the question. – mafu Apr 23 '10 at 20:09
Sorry, didn't see that. There's no way you can remind them constantly upon login to change their password? Even if you have to be obnoxious about it, it would be benefiting them. – Nate Shoffner Apr 23 '10 at 20:17
I'd have to change a lot of stuff do make that possible. – mafu Apr 23 '10 at 23:34

"My idea is this: If I leave the default password empty, it is so horridly insecure that every admin is going to fix this as soon as possible."

Everyone already thinks this way, this is why my tiny Linux system with only 10 daemons will never be secure, because I can't be bothered to go find all the "insecure by default" things and fix them.

If this is a network system, you are now in a race with the hacker who just watched you install the "system", if he gets to login with the default pass before you get a chance to change it, you lose.

When you install the "system", it asks the user to make an admin account.

And optionally:

If the user chooses "no" to make an account, [s]he can add one later by running a program locally on the system that will edit the xml file and add an admin user.

Generating a random password during install is fine too, but if it's some GUI app instead of webapp, you'd probably want to make sure the user can copy/paste the password to a text file or something. Nothing is more annoying than writing down a generated password on paper :)

share|improve this answer
I'm not sure what you're trying to say. I think you're making too many assumptions - the password can be changed before the application runs the first time, and it is not possible to ask the user to change the password during installation. – mafu Apr 23 '10 at 20:06
Yeah well we don't have much context, in this case you can probably just s/install/first run/ – Longpoke Apr 24 '10 at 16:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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