ASP.Net shared hosting & security

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

  1. #1

    Default ASP.Net shared hosting & security

    Hello.

    I'm trying to setup a Win2003 server for hosting ASP.Net Applications in a
    Shared Hosting enviroment.

    With the "old" ASP I created a different anonymous account for each web site
    and restricted the NTFS permissions on system and website folders.

    With ASP.Net I set the <identity impersonate="true"/> in the machine.config
    file and the ASP.Net applications works with the user rights on the file
    system.

    My questions are:
    - Is there a way to set somthing like "nooverride" to avoid single web sites
    to change this setting editing the web.config file ?
    - Is there something other to set to restrict the single ASP.Net
    applications ?
    - I read that the Framework v.1.1 has enhancements for hosting and security.
    It's true and how can I use this enhancements in my scenario ?
    - Is there a way to limit the available namespaces for the single .Net
    application (for example, I don't want that users loads applications on my
    server that makes port scanning to other hosts, applications that reads
    active directory and so on.) ?


    Thanks
    Andrea



    Andrea Pichler Guest

  2. Similar Questions and Discussions

    1. Flash com server on shared hosting?
      hey there I am completely new to flashcom server. I have been talking to the flashcom customer service over the phone, who by the way were...
    2. Secure Downloads in Shared hosting
      Hi there, I have created a download website for members, all downloads are held in a folder and a user can access a specific download when he has...
    3. ASP.Net in a shared hosting environment
      Hi, Does anyone know of any concise documents that detail securing the .net framework installation in a shared web hosting environment? ...
    4. Security issues with Asp.Net in Shared Hosting Environments
      Dear Asp.Net Security Community Over the last couple of months I have posted several items in the official Asp.Net website (www.asp.net) related...
    5. Question about shared hosting.
      if your server win2k, then the same asp.net process is hosting all the web sites, so all sites share the same max memory. also cross site security...
  3. #2

    Default ASP.Net shared hosting & security

    IIS 6 has a new "application pool" feature which help
    solve this type of problem.

    The app pool corresponds to a separate process hosted by
    IIS, and you can control which user account the process
    runs under.

    You could set up multiple accounts, with various levels
    of restriction on what the account can do on the machine.
    >-----Original Message-----
    >Hello.
    >
    >I'm trying to setup a Win2003 server for hosting ASP.Net
    Applications in a
    >Shared Hosting enviroment.
    >
    >With the "old" ASP I created a different anonymous
    account for each web site
    >and restricted the NTFS permissions on system and
    website folders.
    >
    >With ASP.Net I set the <identity impersonate="true"/> in
    the machine.config
    >file and the ASP.Net applications works with the user
    rights on the file
    >system.
    >
    >My questions are:
    >- Is there a way to set somthing like "nooverride" to
    avoid single web sites
    >to change this setting editing the web.config file ?
    >- Is there something other to set to restrict the single
    ASP.Net
    >applications ?
    >- I read that the Framework v.1.1 has enhancements for
    hosting and security.
    >It's true and how can I use this enhancements in my
    scenario ?
    >- Is there a way to limit the available namespaces for
    the single .Net
    >application (for example, I don't want that users loads
    applications on my
    >server that makes port scanning to other hosts,
    applications that reads
    >active directory and so on.) ?
    >
    >
    >Thanks
    >Andrea
    >
    >
    >
    >.
    >
    richlm 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