up vote 2 down vote favorite
share [g+] share [fb]

I'm working on an admin page in PHP in which a user system seems like overkill. I was thinking of just requiring one password to access the admin page, but I'm not sure if would be safe to do so. I can't see any specific security problems that this might pose, can anyone else think of any?

Edit: By "a user system is overkill" I meant that there is not likely to be more than one user.

link|improve this question

76% accept rate
feedback

7 Answers

up vote 1 down vote accepted

To sum up what others have said: Fine as long as the password is not simple, but more vulnerable to brute-force attacks.

Solution: You can enforce a password-complexity policy, and you can throttle further login attempts - get it wrong once, next login is artificially slowed 4 seconds. Get it wrong again, 8 seconds, and so on.

Option: Use two fields - username and password - but make the user also just a static value, like the password. Twice the guessing, twice the effort, twice the security (and twice the hassle for users..)

You could actually throw in a CAPTCHA. That would thwart brute-force attacks pretty well.

link|improve this answer
+1 for the two fields idea. I once did something similar, except I just had two passwords (one static one and one that depends on the user). – musicfreak Sep 27 '09 at 21:00
1  
Ugh! As mentioned in another answer, having twice the length of a password would buy you the same amount of security. And I hate how Ubuntu artificially makes me wait a few seconds because I've mistyped my password. You're just pissing legitamate users off. 3 strikes = captcha, 5 = 24 hour lock out sounds more reasonable to me. – Mark Sep 28 '09 at 3:47
Selected for getting past the math, and the CAPTCHA idea. – Brian Ortiz Sep 28 '09 at 15:54
1  
@Mark those few seconds are there to prevent timing attacks. – wm_eddie Aug 31 '10 at 2:50
I really wish more systems did better throttling. It'd be great if Windows would be "wait 1 minute" instead of "You're locked out." – Thanatos Aug 31 '10 at 3:09
feedback

Complexity of the passwords aside, there are two problems:

  • The passwords must be unique now

If you have user+pass, users can have the same password. Under your model, they all must have a unique one.

  • Limited tracability

A good reason for user accounts to see who does what. You remove this, a little, with a general password as you need to assume, again, a one-to-one matching between them, and users. This may or may not be an issue.

For some of my admin pages, I don't really have a "user" so much as I have two tokens that need to be entered (because I'm the only admin).

For general people signing up, though, and if the password is entered by them, this is not an appropriate plan. If it's just for your admin pages for you, and you generate passwords of an appropriate complexity, life will be good.

link|improve this answer
1  
As I just edited in the question, the one admin is the only "user". – Brian Ortiz Sep 28 '09 at 3:00
Then I'm okay with it. – Noon Silk Sep 28 '09 at 3:02
feedback

It suffers from the same issues as a shared login, making it impossible to revoke for a specific user (if someone leaves, a users computer is compromised, etc), along with the issue of being way more open to brute force attacks (as mentioned by others).

For something simple, that doesn't seem to need a full fledged user/pass system, why not use HTTP Auth built into the server? Easy to setup, doesn't need to be shared, but would require no extra code on the admin script.

link|improve this answer
I'm using CodeIgniter which routes URL's, so I don't think that would work. – Brian Ortiz Sep 28 '09 at 1:58
I got a couple of down-votes, guess that's because I only half addressed the question, and answered what you didn't ask, but seemed to be the root of it. I can't think of an easy way to implement plain old .htaccess style auth with a framework though. – Tim Lytle Sep 28 '09 at 23:59
feedback

There is no problems if your admins wouldn't use simple passwords, like 1234567.

link|improve this answer
5  
Wow, that's the code of my luggages – Gab Royer Sep 27 '09 at 21:00
feedback

I, have the opinion that having a single password makes the system MORE secure (not less), as long as both the password and system are secure.

The reason is that when you have several users, it just takes one of them with a bad password to be the "weak link in the chain"

That said, nothing wrong with it as long as essential security measures are in place - and keep in mind brute forcing is easier (so make sure it's impossible/ineffective)

link|improve this answer
feedback

I would think that for your admin page (one would think the most secure page) that you would want very tight security?

If your "admin" user has a "hard to discover" username and that is paired with a very secure password I would think that this would be a better system.

Ideally I think you would want to have a complex username and password:

e.g.

Username: e4t_Gjw3@gp
Password: q!-gr7cBFL045$bd

Update: based on the comments I thought I would elaborate on why user+pass is more secure than a pass of "e4t_Gjw3@gpq!-gr7cBFL045$bd".

Having both a username and a password doesn't double the security, it does much more than that.

Pretend that usernames and passwords are both 3 characters (from A-Z) no case-sensitivity.

To guess a password, using brute force, you would need up to: 26x26x26 = 17,576 tries.

To guess just a username, same conditions: 26x26x26 = 17,576 tries.

If you had to guess both but they didn't have to match it would be 17,576x2 = 35,152.

However, if you have to guess the username AND find the matching password it is more like:

17,576 usernames * 17,576 passwords = 308,915,776

Of course if you have up to 16 character usernames (using case-sensitivity, numbers, punctuation etc.) and the same for passwords, the number of possibilities is Insanely Huge and thus... secure.

Update2: I seem to have missed typing the key bit of info I was trying to relay in my update. In most systems I've seen or built, the username and password fields have a size restriction built into the SQL columns of 32, or 40, or X characters. In the ones I've seen where there is just a pass column, the size isn't typically doubled to 64, or 80 chars.

Obviously the pass-only column, and set value can be doubled in length to account for the lack of username - but I have rarely if at all seen this done.

link|improve this answer
7  
how would that be diferent from > password: e4t_Gjw3@gpq!-gr7cBFL045$bd ? – João Portela Sep 27 '09 at 21:01
3  
with user+password the amount of tries to get the correct is exponential to power of two, with just one field it's not. – Jani Hartikainen Sep 27 '09 at 21:04
3  
-1 because even after the edit, you're still missing the point. The security provided by a 32-character password is exactly the same as that provided by a 16 char username and 16 char password. – timdev Sep 27 '09 at 21:49
4  
Using a separate user name and password provides the same security as a combined user name and password of equal length. If it is possible to determine if the user name or password is wrong, using a separate user name and password is extremely much weaker then the combined user name and password. – Daniel Brückner Sep 27 '09 at 21:57
3  
-1 for faulty assumptions. To get the most secure password focus on password security. Breaking a password into multiple fields won't make a different. – tster Sep 28 '09 at 3:52
show 13 more comments
feedback

As Jake said, there are many reasons not to do this but it depends on what your application is doing. You need to do enough to put amateur hackers off. Make sure the admin use a strong password - 10 digits, with at least one capital and one symbol or something like that.

Most security experts would still frown on this though.

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.