Security design question

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

  1. #1

    Default Security design question

    Hi,

    Here is the environment related context:
    ================================================== =======================
    Website are hosted in DMZ - subdomain created dmz.companydomain.com
    We have our web farm (3-5 web servers) running under one NT Domain account
    with least privileges.
    Website all 3 level of access: anonymous, registered and verified
    We will use form authentication to authenticate registered and verified user
    SQL server will be used to host user authentication information and Session
    state
    All Line of business web services are hosted internally with Windows
    authentication only
    AzMan is used to perform access check on all public web methods
    ================================================== =======================
    My question are:

    Is this a good practice? Any obvious flaw?
    What is the best way to encrypt session state because it might contain
    sensitive data?
    If the internal web service trust the NT domain account that hosts the web
    site, it means that if someone gain access/control to the site then he could
    possibly call any of the web service methods, is this correct? how to
    prevent it from happening?
    What is the best way to secure public access website that will
    retrieve/update internal business data?

    Thanks very much!
    John



    John Lee Guest

  2. Similar Questions and Discussions

    1. Flex Design Question
      Hello all, I am new to Flex but would like to try it for its cool view. I am currently designing a data centric web application, which allows...
    2. Need a hand with design a question
      Here's the story. I have a large database which has a lot of columns. I am creating a web service for clients to use to insert information into...
    3. Nav Bar button design question
      I have seen buttons on a nav bar with a rollover effect that looks like the button was folded back on the corner on the mouse roll over. What is the...
    4. Database Design Question !!
      I currently have an member registration application written in asp which currently consists of : 1) tblMemberOrders 2) tblMembers. I am...
    5. Design Question
      here's a design question or two: 1) let say i have a a hierarcy of user controls for a nav bar. The first one is a general bar (reports,...
  3. #2

    Default RE: Security design question

    Hi John,

    From the design, you may consider add some firewall between outside and
    your web site, either, between your web server and Web serivce
    server/database. This can help block the attcks. Here are some good
    articles on ASP.NET security, you may take a look first to see they will
    help:


    Securing Your ASP.NET Application and Web Services
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetsec/ht[/url]
    ml/THCMCh19.asp

    Securing .NET Web Applications in an Intranet Environment
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/secmod/html[/url]
    /secmod05.asp

    An Introductory Guide to Building and Deploying More Secure Sites with
    ASP.NET and IIS
    [url]http://msdn.microsoft.com/msdnmag/issues/02/04/aspsec/default.aspx[/url]

    Luke

    [MSFT] 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