vote up 5 vote down star
2

Duplicate of Encrypting config files for deployment .NET and Encrypting config files for deployment


What is the best approach and tools for encrypting information in web.config file?

flag

This is a duplicate. – Josh Stodola Jul 2 at 16:07
10  
a duplicate of what? comments like that should always come with a link :) – Zeus Jul 2 at 16:15
1  
@Zeus, true, but the first two in the 'Related' box will do. – Henk Holterman Jul 2 at 18:38
Thanks for all the responses. I'm voting it for closing. – TheVillageIdiot Jul 3 at 3:01

6 Answers

vote up 4 vote down check

I believe there are two ways of doing this:

using aspnet_regiis using DPAPI or RSA, or doing it programmatically.

The programmatic way can be handy, particularly if you also like to encrypt app.config.

From my experiences of using this, if you write a custom configuration section, you have install the DLL containing the classes for that section into the GAC. For a project I was working I basically scripted the following approach:

  • Copy config DLL to GAC.
  • Perform encryption.
  • Remove config DLL from GAC.

Chances are if you are just encrypting connection strings then this won't be a problem. You also need to be bear in mind whether you want to encrypt on a machine wide basis or to a specific user account- both options can be useful depending on your scenario. For simplicity I stuck to machine wide encryption. The links I have provided explain the merits of both approaches.

link|flag
Yes @Richard making it machine wide makes more easy! – TheVillageIdiot Jul 3 at 2:05
vote up 0 vote down

Here are the command to encrypt web.config file without any programming...

For encryption aspnet_regiis -pef "Section" "Path exluding web.config"

For Decryption aspnet_regiis -pdf "Section" "Path exluding web.config"

From this commands you can encypt descrypt all the section.

link|flag
vote up 1 vote down

You should start from here, easy to follow, well explained step-by-step guide in MSDN: How To: Encrypt Configuration Sections in ASP.NET 2.0 Using DPAPI

link|flag
vote up 0 vote down

try http://aspnet.4guysfromrolla.com/articles/021506-1.aspx.

link|flag
vote up 1 vote down

Use the aspnet_regiis tool in your framework directory:

                                        -- CONFIGURATION ENCRYPTION OPTIONS --

pe section            Encrypt the configuration section. Optional arguments:
                      [-prov provider] Use this provider to encrypt.
                      [-app virtual-path] Encrypt at this virtual path. Virtual path must begin with a forward slash.
                      If it is '/', then it refers to the root of the site. If -app is not specified, the root
                      web.config will be encrypted.
                      [-site site-name-or-ID] The site of the virtual path specified in -app. If not specified, the
                      default web site will be used.
                      [-location sub-path] Location sub path.
                      [-pkm] Encrypt/decrypt the machine.config instead of web.config.

pd section            Decrypt the configuration section. Optional arguments:
                      [-app virtual-path] Decrypt at this virtual path. Virtual path must begin with a forward slash.
                      If it is '/', then it refers to the root of the site. If -app is not specified, the root
                      web.config will be decrypted.
                      [-site site-name-or-ID] The site of the virtual path specified in -app. If not specified, the
                      default web site will be used.
                      [-location sub-path] Location sub path.
                      [-pkm] Encrypt/decrypt the machine.config instead of web.config.
link|flag
vote up 4 vote down

Have you tried this: http://weblogs.asp.net/scottgu/archive/2006/01/09/434893.aspx

link|flag
The blog mentions that IIS manager allows one to edit encrypted sections. But IIS 7 onwards this is not true. The runtime can decrypt the encrypted web.config but not the IIS manager – Ganesh R. Jul 2 at 16:17
Thanks @irwin very nice resource for further studying the problem. – TheVillageIdiot Jul 3 at 3:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.