Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using spring security (2.0.6) to perform HTTP BASIC authentication. I've written a custom authentication provider class which I use to validate usernames and passwords against my database. The problem I'm having is that some users do not have passwords. These users receive an "Access Denied" message. I debugged the code and found that my custom authentication provider isn't invoked when the user's password is blank. Does anyone know how to get around this? I need to allow some users to have blank passwords.

share|improve this question
so if someone doesn't have a password your security is defeated, if you rectify this. – Woot4Moo Dec 15 '10 at 22:17
It's a business requirement that I have to impelement. Yes it may sound insane but there are some business cases where you sometimes need some accounts to be able to login without a password. – Justin Kredible Dec 16 '10 at 2:15
How do you submit a request with blank password, e.g. curl -u user: url? – gigadot Dec 16 '10 at 12:17

1 Answer

up vote 1 down vote accepted

Rather then no password have you tried setting the password in a filter before the AuthenticationProvider to some default like "NOPASSWORD"? I think one of the pre-auth filters does a simple 'if (password == null)' and fails and that's your issue.

share|improve this answer

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.