I want to use a SecureString to hold a connection string for a database. But as soon as I set the SqlConnection object's ConnectionString property to the value of the securestring surely it will become visible to any other application that is able to read my application's memory?

I have made the following assumptions:
a) I am not able to instantiate a SqlConnection object outside of managed memory
b) any string within managed memory can be read by an application such as Hawkeye

link|improve this question

2  
Apparently Hawkeye 1.2.0 can show SecureStrings... So, what is your question? – DK. Dec 17 '09 at 15:07
1  
Oh - so what's the point in securestrings then? – Richard Dec 17 '09 at 15:08
feedback

4 Answers

up vote 2 down vote accepted

Your absolutely right the SecureString does not provide you with any benefit when you need to pass the string to a managed API, such as setting a ConnectionString.

It's really designed for secure communication with secure non-managed APIs.

Microsoft could theoretically consider enhancing SqlConnection object to support a secure ConnectionString, but I think they're unlikely to do so because:

  • SecureString is really only useful in a client app, where e.g. a password is built character by character from user input, without ever having the whole password in a managed string.

  • In such an environment, it's more common to be using Windows authentication for connections to SQL Server.

  • On a server there are other ways to protect the SQL Server credentials, starting by limiting access to the server to authorized administrators.

link|improve this answer
.NET 4.5 will allow a password to be passed as a SecureString when using SQL Server Authentication: What's New in ADO.NET 4.5 – Lee Grissom Nov 19 '11 at 4:00
feedback

Assigning a SecureString value to SQLConnection.ConnectionString will bypass the security, making it useless.

A SecureString is meant to fix these normal string issues, ref:

  • not pinned, garbage collector can move it around, leaving copies in memory
  • not encrypted
  • If your process gets swapped out to disk, the string will be sitting in your swap file
  • not mutable, modifying it will keep the old version and the new version both in memory
  • no way to clear it out when you're done using it

IMHO the SecureString type is a patch for a shoddy security implementation, and currently SecureString hasn't been implemented all across the framework, so it's benefits can't be used fully.

I have the same problem, I'm opting for RSA encryption storing sensitive info in memory.

Another solution is hosting your data access layer via a service on the database server, and the service runs under the local system account, that connects to the database and serves the data, while the local user wont have access to the service config.

link|improve this answer
feedback

If you are that concerned about security I suggest you should enable SSL in SQL server and communicate with it using SSL.

link|improve this answer
2  
Wouldn't the connection password still have to be in memory at some point though? – user159335 Dec 17 '09 at 15:21
@JonB @Shamika yeah, I think it would too – Richard Dec 17 '09 at 15:44
I don't see what using SSL has to do with the question. – Joe Dec 17 '09 at 18:17
feedback

Why is the connection string an issue? Wouldn't the password be what you want to protect (unless you're putting the password in the connection string which is optional for all drivers that I've seen). That being said, the password will usually have to be "in the clear" in memory at some point (unless the driver has some api that allows encrypted passwords or something, but that probably wouldn't actually help much anyway).

Usually this is not a problem because the process is in a secure environment, like on a web server, or running as a system admin type of account (so normal users cannot access the process memory), or usually both. If this is on a client's machine running in userland you must assume that the process is compromised anyway and this wouldn't help. Once you secure the process you don't have to worry about things like this.

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.