vote up 0 vote down star

Scenario: An intranet ASP.Net application using Integrated Windows Authentication and a SqlRoleProvider for authorization. The application is used by a small subset of users within the domain.

If there are only a few users within the domain that should be able to access the application, can IWA be narrowed to allow authentication for that subset of users only, say via a domain group? Is this possible or even logical? This would certainly be the case if you predefined user accounts and used forms authentication. I understand that you can manage authorization within the application but wonder if the above is possible to add some security in depth. Appreciate your thoughts.

flag

50% accept rate
what do you mean by using Integrated Windows Authentication for authorization? – Henry Gao Nov 6 at 3:24
I am only using Integrated Windows for Authentication. I am using the SqlRoleProvider held roles for authorization. – tribus Nov 6 at 3:33
What are your concerns, here? Authenticating someone is generally a small overhead and, unless they're authorised, gives them no access to do anything. – serialhobbyist Nov 6 at 8:16

2 Answers

vote up 1 vote down

IWA will authenticate all valid users. But you can do the following,

  • allocate the subset of users into a group, and use role rrovider for them. Then you can allow only this group to use the application.

  • Or use forms authentication instead and write your own membership provider to authenticate users. Then you have all the controls and can block unwanted users.

link|flag
So the only way to manage the access to the application in this scenario is in fact through role authorization since all valid users will authenticate? – tribus Nov 6 at 3:38
Yes, you must do something after the authentication phase. – lextm-MSFT Nov 14 at 9:02
vote up 1 vote down

With anonymous access disabled, you can set the NTFS permissions on the web application directory to let only specific users in.

link|flag

Your Answer

Get an OpenID
or

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