0
votes
0answers
12 views

Getting IIS Role from Encrypted Cookie

I am trying to get a login working correctly but have run into a little problem. I do not have access to the C# code only the web side of everything so I am not sure if what I need is even possible. ...
-1
votes
0answers
17 views

Encrypting configuration section without access to destination server

I am working on an application that will be deployed to a shared hosting environment (large enterprise, distributed responsibilities). Our team does not have direct access to the server, so we can't ...
0
votes
1answer
105 views

Decrypt encryption done with RsaProtectedConfigurationProvider in web.config file outside of ASP.NET

For my .NET Windows service I need to parse the web.config file for my own ASP.NET web app. I use XmlTextReader to do the parsing, which works great, except when I need to decrypt sections of ...
0
votes
2answers
47 views

Are there any restrictions when encrypting elements in web config?

I find that using "aspnet_regiis" -pef or "aspnet_regiis -pe" to encrypt elements in web.cong works only on several elements and not the others. i.e. it works for ...
0
votes
1answer
271 views

Why can't I encrypt web.config/appSettings using a custom configProtectionProvider on Azure (Windows Server 2012)?

I have an MVC application which is deployed to a Windows Azure hosted service running on a Windows Server 2012 virtual machine. In the web.config file, I have 3 sections encrypted using the ...
0
votes
1answer
46 views

Can iisnode be configured to handle (or ignore) encrypted appSettings?

We have iisnode setup to handle requests to one sub-directory of our ASP.NET web application. As a security measure we encrypt our appSettings. None of the iisnode-related config is particularly ...
2
votes
2answers
113 views

If the connection string is encrypted in the web.config is the site accessible by outside users?

I want to encrypt my connection string in my web.config. 1. What's the best way to do that? 2. Will that cause a problem to access the site by out side users. 3. If so, what can be done so users will ...
1
vote
0answers
160 views

Error running project in Visual Studio 2012 after encrypting web.config

I have created a custom Protected Configuration Provider in order to encrypt 2 sections of our projects web.config using an X509Certificate, one of them being a custom section and the other being the ...
0
votes
1answer
55 views

Encrypt web.config and disallow to decrypt it on target machine

Is it possible to encrypt the web.config before deployment and distribute it to the target machine without the possibility to decrypt it? We want to hide the connection string so that the ...
0
votes
1answer
203 views

ASP.NET Web.config encryption - temp files can't be accessed

I have an asp.net application. There are secret parts contained in the web.config file which I want to protect through encryption. I'm using the ConfigurationSection.SectionInformation.ProtectSection ...
0
votes
0answers
117 views

Encrypt app.config over client machines

I have a wpf application and it is installed on client machines where i have to encrpyt the connection strings in the app.config I encrypted the app.config from the VS CMD with these steps ...
2
votes
3answers
268 views

How can read encrypted connection string in roleManager ASP.NET

pls help, i don't know how to use a Encrypted ConnectionString with RoleManager in ASP.NET This is code in Web.config. <connectionStrings> <add name="strConnectionString" ...
0
votes
1answer
179 views

Encrypt or Decrypt config sections in web.config

What is the simplest and best way to Encrypt or Decrypt the configuration section in web.config file for VS 2010. Is there any difference between approaches used in vs2005 and vs2010 ?
0
votes
2answers
168 views

encrypt connection string using a custom encryption method

encrypting web.config connectionStrings section using .net standard approach , in a shared host is not possible . I read in a blog that an alternative is to create a custom class or method to encrypt ...
0
votes
0answers
100 views

“UseMachineContainer attribute is not allowed” when attempting to add a configProtectedData to web.config

I have been following the guide posted on MSDN: Article I am attempting to use user store to encrypt part of my web.config. Here is the snippet of my web.config that is having the error: ...
0
votes
0answers
281 views

Error decrypting web.config file

I wrote a very simple winforms app for encrypting and decrypting web.config files on our local servers. It works like by calling the following for encrypting aspnet_regiis -pef "connectionStrings" ...
0
votes
2answers
315 views

Encrypt web.config without command line tool

I want to encrypt my appSettings and ConnectionStrings that located on my web.config file. But since I'm using a shared hosting, I can't use aspnet_regiis.exe method. Is there any other way to ...
0
votes
2answers
114 views

Encrypting web.config with RSA

When I use aspnet_regiis to encrypt a web.config, the initial line says configProtectionProvider="RsaProtectedConfigurationProvider" and later down it says <EncryptionMethod ...
0
votes
2answers
129 views

Encryption Web.config sections

I have read about aspnet_regiis for encrypting web.config sections in an ASP.net project, but I am confused how this works since the decryption key must live in plaintext on the actual server ...
0
votes
1answer
683 views

encrypted connection string in web.config

How can an encrypted connection string be read in the C# code when the encrypted connection string is kept in an external configuration file and specified by configSource attribute in the ...
3
votes
2answers
646 views

How To Encrypt Connection String in Web.config - Retired Content?

I currently have an ASP.NET website that has an encrypted connection string within it's web.config file. The settings are in the general AppSettings section, not the ConnectionString section. Within ...
3
votes
2answers
1k views

Adding machineKey to machine.config

I would like to add the machineKey to my machine.config since I am working with programmatic encryption of web.config connection strings in a web farm scenario. My question is, where do I place the ...
0
votes
1answer
109 views

Securing web.config and app.config in a web farm scenario programmatically

This is my first post on this forum. I have a question in regards to securing connection strings in web.config and app.config for a solution I am working on. I have a web farm with a central node ...
1
vote
2answers
1k views

Encrypting only Passwords in web.config ASP.NET

Hi Can i encrypt only passwords in web.config file <add name="PSystem" connectionString="Server=test;Database=Dev;User ID=testuser;Password=password@123;Trusted_Connection=False;Encrypt=True;" ...
0
votes
1answer
188 views

Encrypt Web.Config value in packaged ASP.NET solution

We are selling a web application to a client, and it includes some 3rd party components. These components require licensing keys to work, which we have stored in the web.config. As we are not selling ...
0
votes
1answer
628 views

Deploying pre-encrypted configuration files to a production environment

We want to encrypt all our web app configuration files that we deploy to a server. We'd prefer to do this as a step in our build process and include the pre-encrypted files inside the MSI. This means ...
1
vote
1answer
348 views

Using the same key that aspnet_regiis uses to encrypt the web.config to encrypt data programmatically

I recently discovered the ability to use aspnet_regiis to encrypt portions of the web.config. We want to further encrypt the data stored in the database with a separate key but store that key ...
2
votes
0answers
273 views

Aspnet_Regiis Could not load type 'Microsoft.ApplicationHost.AesProtectedConfigurationProvider'

I have implemented an AesProvider in my web.config (and tried in machine.config as well) like so: <configProtectedData> <providers> <add name="AesProvider" ...
1
vote
1answer
516 views

How do I select/enforce AES encryption with aspnet_regiis to encrypt web.config values?

I need to encrypt part of our web.config for our ASP.Net 4.0 project, but we are required to use AES and the default appears to be Triple DES. How can I tell it to use AES encryption instead? In the ...
1
vote
1answer
645 views

Should I use RSAProtectedConfigurationProvider or My Own Provider?

To encrypt web.config sections on both sites in a farm and single servers, from what I understand using the following command will encrypt my web.config connection strings using the local machine key ...
3
votes
1answer
234 views

Encrypting custom configuration settings

I'm having some troubles encrypting a configuration section. We use a package from an external supplier and the web.config is structured in the following way: web.config <appSettings ...
1
vote
1answer
912 views

asp.net mvc 3 web.config connection string encryption

I have to deploy an asp.net mvc 3 website and its web.config contains database credentials. After searching for a while, I found that one could place the connection string in a .cs file in App_Data ...
1
vote
2answers
919 views

encrpyting web.config with command aspnet_regiis.exe

I have my web config as follows <?xml version="1.0"?> <configuration> <appSettings/> <connectionStrings> <add name="MySqlConnection" connectionString="Data ...
5
votes
2answers
4k views

How to encrypt one entry in web.config

ASP.NET 4 I've used RSA key encryption for connection strings in web.config on my web farm. However, there's one more custom password entry that I'd like to encrypt. How should I encrypt it with RSA ...
5
votes
4answers
911 views

Why encrypt a web config file?

As far as I can tell, any section in a web.config file can be encrypted & decrypted using aspnet_regiis.exe. If aspnet_regiis can be used to decrypt the web.config file, then what's the point of ...
0
votes
0answers
160 views

web.config file encryption in asp.net different versions

How do we encrypt web.config files in ASP.NET 2.0 ? Is it different in asp.net 3.0,3.5 n 4.0?
1
vote
2answers
437 views

Encrypt custom section in web.config - any improvements in net3.5 and higher?

anyone from MS or some MS MVP? Any improvements for encrypting specific custom section in web.config besides using hack like in Using ASPNet_Regiis to encrypt custom configuration section - can you ...
2
votes
1answer
615 views

encrypting web.config data for multiple servers

I need to encrypt sections of my web.config file for a client. Most of the references I've seen are to using aspnet_regiis to do the encryption. However, as far as I can see, this needs to happen on ...
1
vote
1answer
107 views

Web Farm Encryption Troubleshooting

I want to use a shared RSA Key Container for our web farm to encrypt the web.config. I have followed all the documented steps, including using the -pa switch to authorize the identity of my app pool ...
4
votes
4answers
360 views

What is the point of encrypting the web.config? ASP.NET

Oi, some vendor is telling my bosses that not encrypting the web.config is big security hole. This sounds like bunk to me. I mean, if someone compromises the server aren't we screwed anyways?
0
votes
2answers
245 views

Encrypting elmah section of web.config file

How can I encrypt the elmah section of my web.config file, so the SMTP server & login information is protected? I've learned how to encrypt the connection strings, appSettings and other sections; ...
2
votes
1answer
879 views

Securing Connection String in Windows Azure and web.config

I encrypt the connection string in web.config like described here: http://blogs.msdn.com/b/sqlazure/archive/2010/09/07/10058942.aspx published to Azure and everything is working as expected. BUT now I ...
1
vote
2answers
1k views

Provider not found when encrypting web.config

I'm trying to encrypt a custom section in a web.config file. When I get to the line that calls ProtectSection(), I get an exception saying the provider isn't found. Configuration config = ...
6
votes
2answers
817 views

Should i encrypt web.config on shared hosting?

Good day all. I've took out some .net hosting with web fusion but are fighting to get answers regarding their security set up. Specifically i'm used to full trust enviroments as i work for a large ...
3
votes
4answers
553 views

Should you encrypt data in the app.config and web.config under this situtation?

I am developing an asp.net mvc 2 web application. My clients will most likely want a copy of my application to be hosted on their servers instead of me hosting it on my server for all clients. ...
3
votes
3answers
331 views

Using encrypted web.config file

My aim is to make the web.config not readable by external users, but my application should be able to access it. Is there any way to do this? I have tried the following way, but how to set the ...
3
votes
3answers
730 views

How to keep multiple connectionString passwords safe, separate, and easy to deploy?

I know there are plenty of questions here already about this topic (I've read through as many as I could find), but I haven't yet been able to figure out how best to satisfy my particular criteria. ...
4
votes
1answer
632 views

Can I encrypt web.config with a custom protection provider who's assembly is not in the GAC?

I have written a custom protected configuration provider for my web.config. When I try to encrypt my web.config with it I get the following error from aspnet_iisreg aspnet_regiis.exe -pef ...
11
votes
3answers
7k views

Encrypting the connection string in web.config file in C#

I have written the name of my database, username and password in my web.config file as connection string. I want to encrypt this data. How can I do it? <connectionStrings> <add ...
0
votes
2answers
261 views

Encrypting config files info

I have many ASP.NET applications running on server and i want to encrypt the web.config file for each. Is there a way I can encrypt all config files using single class/app or do i have to write ...

1 2