authentication/login scheme

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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. ...
  3. #2

    Default 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.
    >-----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 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.
    >.
    >
    G. Gnana Arun Ganesh Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139