Windows Authentication

T

thomson

Hi all,
I do have Windows Authentication in My Web application, and in
the IIS i have enabled anonymous authentication,


So it means that any user logging in will use the ASPNET user
account credentials to browse the web application.

Is there any other impact, does it mean that the user should be in
the active directory, or any user from any network can browse the
application


Regards

thomson
 
L

Leon Mayne [MVP]

thomson said:
Hi all,
I do have Windows Authentication in My Web application, and in
the IIS i have enabled anonymous authentication,

So it means that any user logging in will use the ASPNET user
account credentials to browse the web application.

Is there any other impact, does it mean that the user should be in
the active directory, or any user from any network can browse the
application

If you have anonymous access set in IIS and you haven't set any
authentication / authorisation options in your web.config then anyone will
be able to access the site, and yes, they will be running in the context of
the ASPNET account, which is a local account.
 
T

thomson

Hi Leon,

So if we have enabled anonymous authentication, you dont
have to be in a windows network, anybody from outside will be able to
access the application


Regards

thomson
 
L

Leon Mayne [MVP]

thomson said:
Hi Leon,

So if we have enabled anonymous authentication, you dont
have to be in a windows network, anybody from outside will be able to
access the application

If the machine is visible to the world through your network (e.g. through
your firewall) and you haven't set any IP restrictions in IIS, and you have
the underlying file permissions set so that the internet guest account /
ASPNET account can read the files then yes. Try using an external browser to
see if you can access it like http://anonymouse.org/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top