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

Possible Duplicate:
What user names should I disallow?

What potentially misleading user names would you forbid for user registration?

I think of "moderator", "admin", "administrator", "guest", "anonymous".

Do you have other suggestions?

share|improve this question
6  
Very similar to: stackoverflow.com/questions/918654/… – Paolo Bergantino Jul 19 '09 at 17:58
It's a good question, but I think it's well covered by the Q&A that Paolo linked to. – Fredrik Mörk Jul 19 '09 at 18:02
Thanks guys. I missed that question. – Sergey Jul 19 '09 at 18:09
1  
@Sergey: I agree with you, which is I didn't vote to close initially. However, I already voted to close after it seemed like the community thought the other one was enough. If it does get closed I will probably vote to reopen, however. I just flip flop like that :) – Paolo Bergantino Jul 19 '09 at 18:21
3  
Apart from the obvious ones like admin etc, I think its a much better idea to have the user's permission level easily visible on the site rather than having people try and determine it based on their username. – micmcg Jul 20 '09 at 1:45
show 2 more comments

marked as duplicate by Fredrik Mörk, Alex Rozanski, Paolo Bergantino, Michael Petrotta, jjnguy Jul 19 '09 at 21:26

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

9 Answers

Definitely "Robert'); Drop Table Students;--". As shown here.

share|improve this answer
2  
Bobby Tables strikes again! – JohnFx Jul 19 '09 at 18:22

"Jon Skeet"

share|improve this answer
ah those deadly quotes again! – lexu Jul 19 '09 at 18:50

You won't be able to create a blacklist of every possible bad name ; even if you try, and get a nice list...

... So, you definitly must have the possibility to modify a user's name (and there has to be some kind of notification sent to him, to inform him of this change ; and explaining him why is really a good idea, so that he doesn't feel to much offended)

You also should clean the names, by filtering out "bad data" : an HTML tag (in the case of a website), for instance, should not be allowed in a username, I think -- event if it is properly escaped in every output.

Maybe preventing users from using an email address is a good thing too, so they don't have their address publicly displayed, and don't get loads of spam because of your website (here too, explain to them why ! )

Fixing limits on the size of the name might also be a good thing, so that no user can say "My login is 'a', because I'm one of the oldest users" ?

Finally, only allowing ascii characters (letters (only lowercase ? ), numbers, and a couple of simple symbols) is probably good practice too...

share|improve this answer

If other users might get messages from them, you might want to add these to avoid people tricking others into giving up passwords.

  • Support
  • Help
  • AccountServices
share|improve this answer

Words with manager, [tech]support, and other common job designation titles. Also if you're going to take out anonymous and moderator, you may also want to take out user and owner.

share|improve this answer

Two more: root and superuser

share|improve this answer
Superuser doesn't seem bad. – Evan Fosmark Jul 19 '09 at 18:03
It does on superuser.com :) – Inshallah Jul 19 '09 at 18:05

Your list looks to be a good start. I would also include

  • sa
  • dbo

One very simple, yet effective security measure is just to change the default admin login account names to something non-standard. Very simple way to avoid those who target such accounts specifically.

share|improve this answer

You should also avoid names that are offensive, e.g. F*CK*OFF. etc. Don't forget that people will be creative and creating speling variants, like using numbers instead of letters, etc. so you really need a perl-like processor for this.

We wrote a code-scanner for work, because some programmers would put obscenities in their comments in their code. And one day it appeared on a site because of a bug -- of a reputable major US bank.

share|improve this answer
Total waste of time, people will always be able to get around this. Have the ability to reset a username, but don't waste time building a system that tries to filter out all the possible permutations of offensive words. – micmcg Jul 20 '09 at 1:42

You can't go wrong forbidding "Adolf Hitler" and "Jeffrey Dahmer".

share|improve this answer

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