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

  1. #1

    Default Web.config Security

    Hi All ,

    I have this problem. I know how to encrypr connections strings or XML files
    using Aplication Block. I have implemented a Data Protection Provider to
    encrypt all my configurations files. My problem is that my encryptation key
    and other personal information is set in my web.config or app.config . I
    wonder if Visual Studio has any tool or service to encrypt or secure the
    web.config or there is another way to do this in order to make sure than
    anyone is going to open or modify this file. Any advice?

    Thanks for your help.


    Damian Guest

  2. Similar Questions and Discussions

    1. Security.config Cleared!
      I run a .NET Win forms test harness firing off a Class library that invokes a WS-Security based web-service (using a policy file). It works fine...
    2. Security setting in Web.config file.
      Hi All, We have the following scenerio. Machine 1: webservice is deployed in this machine. Machine 2: UserControl is deployed in this machine. ...
    3. Web.Config and subdirectory *location* security
      I've read similar posts to this issue, and I am fairly certain this configuration should work. However, when I try to request any of the pages in...
    4. Web.Config / Security Settings for sites NOT on sys partition
      I have a Win2K server set up with .NET 1.1, IIS5, and I run a few development test sites on this server for deployment elsewhere. Up until now,...
    5. Web config security settings
      Hi all; I want to use user name and password in my asp.net project for all aspx files but not for asmx files. Or i want to use some files with...
  3. #2

    Default Re: Web.config Security

    Damian,

    Please see my response under microsoft.public.dotnet.security.

    Alek

    "Damian" <t-damianl@infocorp.com.uy> wrote in message
    news:OwMK%23M$6DHA.2300@TK2MSFTNGP10.phx.gbl...
    > Hi All ,
    >
    > I have this problem. I know how to encrypr connections strings or XML
    files
    > using Aplication Block. I have implemented a Data Protection Provider to
    > encrypt all my configurations files. My problem is that my encryptation
    key
    > and other personal information is set in my web.config or app.config . I
    > wonder if Visual Studio has any tool or service to encrypt or secure the
    > web.config or there is another way to do this in order to make sure than
    > anyone is going to open or modify this file. Any advice?
    >
    > Thanks for your help.
    >
    >

    Alek Davis Guest

  4. #3

    Default Re: Web.config Security

    Hi..

    You can pl. check up with the isoltaed storage.....

    The security provided by frame workk...

    Bye

    "Alek Davis" <alek_xDOTx_davis_xATx_intel_xDOTx_com> wrote in message
    news:OjS21iA7DHA.2088@TK2MSFTNGP10.phx.gbl...
    > Damian,
    >
    > Please see my response under microsoft.public.dotnet.security.
    >
    > Alek
    >
    > "Damian" <t-damianl@infocorp.com.uy> wrote in message
    > news:OwMK%23M$6DHA.2300@TK2MSFTNGP10.phx.gbl...
    > > Hi All ,
    > >
    > > I have this problem. I know how to encrypr connections strings or XML
    > files
    > > using Aplication Block. I have implemented a Data Protection Provider to
    > > encrypt all my configurations files. My problem is that my encryptation
    > key
    > > and other personal information is set in my web.config or app.config . I
    > > wonder if Visual Studio has any tool or service to encrypt or secure the
    > > web.config or there is another way to do this in order to make sure than
    > > anyone is going to open or modify this file. Any advice?
    > >
    > > Thanks for your help.
    > >
    > >
    >
    >

    Madan Nayak Guest

  5. #4

    Default Re: Web.config Security

    No, by itself, isolated storage provides no security whatsoever. It is a
    means for allowing programs to store application-specific data (in plain
    text, by the way), but there are also easy means of accessing these data in
    isolated storage as well (APIs, etc).

    "Madan Nayak" <madan@ubicsindia.com> wrote in message
    news:uygizjH7DHA.2524@TK2MSFTNGP11.phx.gbl...
    > Hi..
    >
    > You can pl. check up with the isoltaed storage.....
    >
    > The security provided by frame workk...
    >
    > Bye
    >
    > "Alek Davis" <alek_xDOTx_davis_xATx_intel_xDOTx_com> wrote in message
    > news:OjS21iA7DHA.2088@TK2MSFTNGP10.phx.gbl...
    > > Damian,
    > >
    > > Please see my response under microsoft.public.dotnet.security.
    > >
    > > Alek
    > >
    > > "Damian" <t-damianl@infocorp.com.uy> wrote in message
    > > news:OwMK%23M$6DHA.2300@TK2MSFTNGP10.phx.gbl...
    > > > Hi All ,
    > > >
    > > > I have this problem. I know how to encrypr connections strings or XML
    > > files
    > > > using Aplication Block. I have implemented a Data Protection Provider
    to
    > > > encrypt all my configurations files. My problem is that my
    encryptation
    > > key
    > > > and other personal information is set in my web.config or app.config .
    I
    > > > wonder if Visual Studio has any tool or service to encrypt or secure
    the
    > > > web.config or there is another way to do this in order to make sure
    than
    > > > anyone is going to open or modify this file. Any advice?
    > > >
    > > > Thanks for your help.
    > > >
    > > >
    > >
    > >
    >
    >

    Alek Davis Guest

  6. #5

    Default RE: Web.config Security

    You can store your key in the registry or in a COM+ constructor.
    David Coe 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