Implementing Security - Advice Please

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

  1. #1

    Default Implementing Security - Advice Please

    I am in the process of writing a fairly large ASP.NET web application and I
    am about to implement log-ons, permissions etc. I have never used any
    security with ASP.NET before; only classic ASP.

    I would like to base my user's logon information and permissions on their
    domain account. What is the best way to do this? Can web-based forms
    communicate with the domain users accounts? What about storing session
    information - how do we do this? Is there any recommended techniques for
    implementing this sort of security? Can anyone point me to any articles
    relating to this subject?

    Any help will be gratefully appreciated.


    frank Guest

  2. Similar Questions and Discussions

    1. Need advice on security setup
      Hi all experts. I am currently planning a rather large application that will have the following characteristics: 1) Business Services layer...
    2. ASP/DB Security Model Advice
      ENVIRONMENT: Windows 2000 Professional (sp3) Internet Information Server (5.0) Active Server Pages (3.0) VBScript (5.6) Microsoft SQL Server...
    3. ASP.NET security advice wanted
      We have an interesting ASP.NET security design problem. I think that I have worked out a solution, but I want to make sure that I am not off base....
    4. Advice on implementing Exception Management Block
      Hi There I am busy evaluating using the Exception Management Block in my web app. I have divided my solution into 3 projects. 1) WebApp 2)...
    5. Security advice ?
      Hi I have completed a PHP+ MySQL application that uses and stores sensitive data (uses SSL via https). My query is a little non standard here - ...
  3. #2

    Default Re: Implementing Security - Advice Please

    "frank" <frank@frank.com> wrote in message
    news:elq1cwIbDHA.2344@TK2MSFTNGP12.phx.gbl...
    > I am in the process of writing a fairly large ASP.NET web application and
    I
    > am about to implement log-ons, permissions etc. I have never used any
    > security with ASP.NET before; only classic ASP.
    >
    > I would like to base my user's logon information and permissions on their
    > domain account. What is the best way to do this? Can web-based forms
    > communicate with the domain users accounts? What about storing session
    > information - how do we do this? Is there any recommended techniques for
    > implementing this sort of security? Can anyone point me to any articles
    > relating to this subject?
    You don't say whether or not this is an Intranet application. If it is, then
    you can use Windows Authentication.

    A good starting point is the following article on MSDN: Authentication in
    ASP.NET: .NET Security Guidance
    ([url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbda/html[/url]
    /authaspdotnet.asp).
    --
    John Saunders
    Internet Engineer
    [email]john.saunders@surfcontrol.com[/email]


    John Saunders Guest

  4. #3

    Default Re: Implementing Security - Advice Please

    "John Saunders" <john.saunders@surfcontrol.com> wrote in message
    news:eXc716JbDHA.2372@TK2MSFTNGP10.phx.gbl...
    > "frank" <frank@frank.com> wrote in message
    > news:elq1cwIbDHA.2344@TK2MSFTNGP12.phx.gbl...
    > > I am in the process of writing a fairly large ASP.NET web application
    and
    > I
    > > am about to implement log-ons, permissions etc. I have never used any
    > > security with ASP.NET before; only classic ASP.
    > >
    > > I would like to base my user's logon information and permissions on
    their
    > > domain account. What is the best way to do this? Can web-based forms
    > > communicate with the domain users accounts? What about storing session
    > > information - how do we do this? Is there any recommended techniques for
    > > implementing this sort of security? Can anyone point me to any articles
    > > relating to this subject?
    >
    > You don't say whether or not this is an Intranet application. If it is,
    then
    > you can use Windows Authentication.
    It's primarily an Intranet application, although it may be available in the
    future on the Internet.
    > A good starting point is the following article on MSDN: Authentication in
    > ASP.NET: .NET Security Guidance
    >
    ([url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbda/html[/url]
    > /authaspdotnet.asp).
    Thanks.


    frank Guest

  5. #4

    Default Re: Implementing Security - Advice Please

    "frank" <frank@frank.com> wrote in message
    news:%23OerBGKbDHA.1748@TK2MSFTNGP12.phx.gbl...
    > "John Saunders" <john.saunders@surfcontrol.com> wrote in message
    > news:eXc716JbDHA.2372@TK2MSFTNGP10.phx.gbl...
    > > "frank" <frank@frank.com> wrote in message
    > > news:elq1cwIbDHA.2344@TK2MSFTNGP12.phx.gbl...
    > > > I am in the process of writing a fairly large ASP.NET web application
    > and
    > > I
    > > > am about to implement log-ons, permissions etc. I have never used any
    > > > security with ASP.NET before; only classic ASP.
    > > >
    > > > I would like to base my user's logon information and permissions on
    > their
    > > > domain account. What is the best way to do this? Can web-based forms
    > > > communicate with the domain users accounts? What about storing session
    > > > information - how do we do this? Is there any recommended techniques
    for
    > > > implementing this sort of security? Can anyone point me to any
    articles
    > > > relating to this subject?
    > >
    > > You don't say whether or not this is an Intranet application. If it is,
    > then
    > > you can use Windows Authentication.
    >
    > It's primarily an Intranet application, although it may be available in
    the
    > future on the Internet.
    Ok, keep in mind that Windows Authentication can work over the Internet.
    "Windows Authentication" really means "IIS Authentication", and IIS does
    support Basic Authentication which requests a username/password. Do this
    over SSL and you should be ok.
    --
    John Saunders
    Internet Engineer
    [email]john.saunders@surfcontrol.com[/email]


    John Saunders Guest

  6. #5

    Default Re: Implementing Security - Advice Please

    "John Saunders" <john.saunders@surfcontrol.com> wrote in message
    news:unbjJcKbDHA.2820@tk2msftngp13.phx.gbl...
    >
    > Ok, keep in mind that Windows Authentication can work over the Internet.
    > "Windows Authentication" really means "IIS Authentication", and IIS does
    > support Basic Authentication which requests a username/password. Do this
    > over SSL and you should be ok.
    Is Windows Authentication based on the Domain user accounts?


    frank Guest

  7. #6

    Default Re: Implementing Security - Advice Please

    I wrote a useful hands-on article about implementing security within
    an ASP.NET application for the September/2003 issue of Windows
    Developer - "Quick ASP.NET Security". You can download it for free if
    you register at the site, and I think you will find it useful. It
    builds upon the basics of ASP.NET security; it's not just
    regurgitation of the .NET Framework docs:
    [url]http://www.windevnet.com/wdn/articles/2003/0309/[/url]


    "frank" <frank@frank.com> wrote in message news:<elq1cwIbDHA.2344@TK2MSFTNGP12.phx.gbl>...
    > I am in the process of writing a fairly large ASP.NET web application and I
    > am about to implement log-ons, permissions etc. I have never used any
    > security with ASP.NET before; only classic ASP.
    >
    > I would like to base my user's logon information and permissions on their
    > domain account. What is the best way to do this? Can web-based forms
    > communicate with the domain users accounts? What about storing session
    > information - how do we do this? Is there any recommended techniques for
    > implementing this sort of security? Can anyone point me to any articles
    > relating to this subject?
    >
    > Any help will be gratefully appreciated.
    Luther Miller 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