Ask a Question related to ASP.NET Security, Design and Development.
-
Kevin #1
authentication/login scheme
I am a developer, not an administrator and want to ask
you guys for advice on designing a login/authentication
scheme for a new .Net C# product.
-The product will run on customers' intranets. (The
website may be accessed remotely but we are not ruling
out forcing them to go through a VPN.)
-The logins will come from a database not from Windows
accounts.
-We would rather not pay to subscribe to a third party
service (this is my assumption about Passport and some of
the certificate methods).
-We would rather not force the user to deploy a
certificate on each client machine that might try to
access the web site. (We are looking for a highly
automated install that will require as little from the
customer as possible.)
- The authentication scheme used should affect this web
site only and not all of our customers' sites.
- We need to keep the information secure including the
login credentials that are compared against the database.
I know that I have various methods at my disposal: Forms
Authentication, various IIS Windows Authentication
methods and ISAPI filter DLLs. Although I have a general
understanding of each option, I don't yet know enough to
make thorough comparisons between the methods based on
our requirements. Any advice you guys could give will be
appreciated.
Kevin Guest
-
Strange problem with Forms authentication: After successfull login, login page is still displayed
Hi there I have a quite strange problem with my ASP.NET-Application. The application has being deployed one year ago and worked fine till last... -
Login/password authorization scheme
Hello. How basic login/password authorization scheme in Flash applet for upstreaming and FMS can be realized? Namely how login and password entered... -
Login without Forms authentication
Hi! If I enable Forms authentication for a subdirectory in the web.config file, several types can't be loaded anymore (because the subdirectory... -
can't login! - authentication prob.
Hi, Can anyone help. I have a folder on my website that has 'anonymous access' and 'basic authentication' disabled, and requires 'intergrated... -
Login Authentication
hI ... I am newbie to ASP ... i am trying to write a code to accept login and passwor from a user and verify through a table created in MySQL. ... -
G. Gnana Arun Ganesh #2
authentication/login scheme
Hai Kevin,
Intranet Web application : Windows authentication
Private corporate Web application: Windows authentication
Commercial Web application: Forms authentication
Multiple commercial Web applications: Passport
authentication.
Better option: windows authentication + Active Directory
Windows authentication using Kerberos, an authentication
protocol that is an integral component of Windows Active
Directory. Kerberos is designed to provide authentication
using secret key cryptography.
You may also forms authentication with storing encrypted
ids in the database.
Warm regards,
Arun Ganesh.
Microsoft .NET MVP.
of>-----Original Message-----
>I am a developer, not an administrator and want to ask
>you guys for advice on designing a login/authentication
>scheme for a new .Net C# product.
>
>-The product will run on customers' intranets. (The
>website may be accessed remotely but we are not ruling
>out forcing them to go through a VPN.)
>-The logins will come from a database not from Windows
>accounts.
>-We would rather not pay to subscribe to a third party
>service (this is my assumption about Passport and somegeneral>the certificate methods).
>-We would rather not force the user to deploy a
>certificate on each client machine that might try to
>access the web site. (We are looking for a highly
>automated install that will require as little from the
>customer as possible.)
>- The authentication scheme used should affect this web
>site only and not all of our customers' sites.
>- We need to keep the information secure including the
>login credentials that are compared against the database.
>
>I know that I have various methods at my disposal: Forms
>Authentication, various IIS Windows Authentication
>methods and ISAPI filter DLLs. Although I have abe>understanding of each option, I don't yet know enough to
>make thorough comparisons between the methods based on
>our requirements. Any advice you guys could give will>appreciated.
>.
>G. Gnana Arun Ganesh Guest



Reply With Quote

