I'm working on an application that encrypts configuration file settings for an ASP.Net web server. The encryption method I'm implementing is enveloping data using AES and RSA. I'm generating an AES Key, using that AES key to encrypt my data, then encrypting the AES key with the public key from a certificate in my Windows Certificate Store. I then save the data, along with the encrypted AES key, and the certificate serial number used to encrypt it, back to the configuration file. When I want to access this data, I read the serial number of the certificate used to encrypt the AES key, pull out the private key from that certificate, and decrypt the AES key, then decrypt the data using that key. Here is where I am unsure of my level of security.

In order to access the private key associated with the certificate, I must mark the private key as exportable, and give the user my application runs under access to the private key. Since this is an ASP.Net server, that user is "Network Services". I'm sure you can see why this would be a security issue. Basically if anyone were to break into my ASP.Net server over the web, perhaps through some sort of injection, they would have access to that private key, would they not?

Does anyone have any suggestions as to how I could make my model more secure?

Decrypt Function:

     //need an rsa crytpo provider to decrypt the aes key with the private key associated with the certificate
        using (RSACryptoServiceProvider rsaCSP = (RSACryptoServiceProvider) decryptionCertificate.PrivateKey)
        {
            //decrypt the aes key with the cert's private key
            byte[] aesKey = rsaCSP.Decrypt(encryptedAESKey, false);

            //decrypt data using the decrypted aes key and the IV passed in
            decryptedData = decryptWithAes(encryptedData, aesKey, aesIV);
        }

Thanks.

link|improve this question

You are misusing the certificate and a private key. Proper implementation doesn't need to pull the private key to perform decryption. CryptoAPI functions let you perform operations using that key without having it as extractable. As you didn't specify what exactly functions you use, I can't comment further. – Eugene Mayevski 'EldoS Corp May 6 '11 at 15:06
@Eugene, I'm instantiating an RSACryptoServiceProvider from the X509Certificate.PrivateKey I pulled out of the cert store, then decrypting using that – Petey B May 6 '11 at 20:12
@Eugene Mayevski 'EldoS Corp , I added the code to my question, thank you. – Petey B May 6 '11 at 20:44
Why don't you use ASP.NET .config file standard encryption feature? – Simon Mourier May 7 '11 at 6:47
@Simon Mourier, that encryption uses generated machine keys, we are using managed keys that we have backed up incase of machine failure. Also I'm building this library to be used with all .Net applications, but in this case it is an APS.Net server. – Petey B May 9 '11 at 15:50
feedback

3 Answers

If you have a certificate with a private key, it makes sense to employ PKCS#7 / CMS encryption of the AES key. This lets you decrypt the data with non-exportable private keys.

Unfortunately .NET doesn't seem to offer classes for CMS encryption. CryptoAPI does offer such functions (CryptEncryptMessage and CryptDecryptMessage), but they need to be called via P/Invoke, which can be to some extent non-trivial. For C# sample of doing this see the source code here.

An alternative option would be to use our SecureBlackbox components (TElMessageEncryptor, TElMessageDecryptor), though in your case this might be an overkill.

link|improve this answer
Can you please give me an example of the use of this two components (TElMessageEncryptor, TElMessageDecryptor) to encrypt and decrypt a file with PKCS#7 format and using digital certificates? I have downloaded the full package of secureblackbox but I couldn't find an example of this components – DkAngelito Sep 27 '11 at 23:00
@DkAngelito answered in our support forum. Samples\language\PKIBlackbox\MessagesDemo shows them. – Eugene Mayevski 'EldoS Corp Sep 28 '11 at 5:43
feedback

Just by writing

RSACryptoServiceProvider rsaCSP = (RSACryptoServiceProvider)decryptionCertificate.PrivateKey

it doesn't mean that you are assigning the actual "key". You can make the private key Non-Exportable and still would be able to perform decryption.

link|improve this answer
Yes you are correct, my mistake. – Petey B Jun 6 '11 at 13:29
feedback

I think there are some inherent conflicts with your security model. You want an application running under the user "Network Services" to be able to decrypt the config file, but you want the encrypted information to be safe even if the "Network Services" user is compromised. Those two goals are at odds - either the user can access the data or it can't. I think the best you can do is segragate the security access, so that if "Network Services" on one machine is compromised, it does not compromise the security of other users or other machines. That is why the Windows security model provides each user on each machine with it's own private key, and that is the key used by DPAPI to encrypt/decrypt the config files.

You say that in your model, you are encrypting the config info with a standard set of keys. In this model, if one trusted user on one machine is compromised, then the attacker gains the key to access all the encrypted config data for all users on all machines. You say that you are using managed keys in case of machine failure. I would suggest that it is more secure to backup and manage the DATA being encrypted then to backup and manage the KEYS being used to access that data.

My suggestion is use the built in .Net methods of encrypting/decrypting the config data, which uses the Windows private key of the user on the local machine. (there's some examples of implementing the standard aproach here: http://weblogs.asp.net/jgalloway/archive/2008/04/13/encrypting-passwords-in-a-net-app-config-file.aspx and here: http://www.codeproject.com/KB/security/ProtectedConfigWinApps.aspx) If any data is being put into the config files that is essential and would need to be recovered in case of machine failure, then send that data to your database or other central data store as a backup. This avoids using the same managed key or keys for all your deployments.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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