vote up 0 vote down star

I am using Windows Authentication in my ASP.NET MVC application and I am prompted to enter credentials on my webserver which is a domain member [I have domain credentials and can authenticate fine] however when my controller action calls "User.Identity.Name" in an attempt to check a database value against the currently logged in user this is returning the SAM Account from the local machine and NOT the SAM account from the DOMAIN:

Local machine user name (which User.Identity.Name returns): LOCALPC\username

What I am expecting (which is what I am authenticating against AD as): DOMAIN\username

This causes me problems because I cannot accurately verify a user using only the username.

Am I missing something, is there a way to return what I am currently authenticated as to the webserver as opposed to what the local SAM account is on the client machine?

The reason this is important is because not all the intranet application clients will be domain joined (machines that aren't domain joined but belong to users with AD accounts).

flag
While debugging the application User.Identity is showing that I am authenticated (so I am assuming it has a Windows Token cached somewhere) is it possible to impersonate the user I am authenticated as to obtain the SAM account of that user? – mig Apr 22 at 6:15
By the way, I can use impersonation to achieve this but if I did I would need a way to access the users' credentials in order to impersonate their accounts which isn't optimal (or even an option to me right now) especially since they have already entered the credentials if they are outside the domain. Because again if they are accessing the site from a domain joined machine this is not an issue, it is only an issue from a machine not on the domain. – mig Apr 22 at 6:46
I really don't want to cache their credentials if I ask for them myself to impersonate their account, I guess the answer to my question would basically be in accessing the token that they use to authenticate in the first place and ask impersonate them using THAT token to then get their SAM account (account name). – mig Apr 22 at 6:47

2 Answers

vote up 0 vote down check

When prompted in your web browser enter "DOMAIN\username" instead of just "username" for the authentication.

EDIT:

Is this a development server? Check the account that IIS is running on. Did you configure impersonation in web.config?

link|flag
If both users have the same password, this is the case, yes. If not, it shouldn't make a difference. – Martin C. Apr 22 at 6:24
I always authenticate as DOMAIN\username, however User.Identity.Name apparently doesn't cache 'DOMAIN\username' and just returns 'LOCALPC\username' when asked for the name again (which is the issue) they aren't the same strings so they can't be compared against each other. – mig Apr 22 at 6:32
It was my mistake, thanks for helping though. – mig Apr 22 at 7:24
vote up 1 vote down

My mistake, the issue is fixed now, it turned out to be an error in my code and the fact that my machine is not domain joined that was leading me to believe the issue was with the value of User.Identity.Name.

Thanks all for suggestions, hopefully my next contribution to the site will be on a less foolish note.

--

By the way - this link might help people looking for related information on authentication in IIS: http://blog.mike-obrien.net/PermaLink,guid,5e975b20-7b05-472f-bd80-04028ab8b6fa.aspx

link|flag

Your Answer

Get an OpenID
or

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