vote up 2 vote down star
1

Hi,

I have a situation that users access remote MySQL server in C# application.

Basically,

A user using C# application on his/her desktop ->>>> connects to remote ->>>>>>>> [ REMOTE ]

How do I securely hide database connection detail?

I have few ideas, but I don't think they are safe.

  1. Encrypt database connection data into a file and store it within application directory.
  2. prompt login page and let a human enter username/password, then transfer database connection data to user's computer.
flag

Your threat model isn't entirely specified. Are you trying to hide this data from the user, or from other bad guys? If the latter, do the bad guys have access to the user's machine or not? – Keith Randall Nov 5 at 1:24
@Keith Randall // Actually, both since a user sometimes become a bad user. – terrani Nov 5 at 1:41

4 Answers

vote up 5 vote down check

No matter what you do if the credentials end up in the application in cleartext you are vulnerable.

Either implement a service layer in front of the database or if direct connections are essential try and come up with a scheme that allows a unique databse account for each user and then authorise them appropriately on the database.

link|flag
Service layer +1 – James Bailey Nov 5 at 1:22
+1 for service layer. – Caelum Nov 5 at 1:25
vote up 0 vote down

I would suggest some form of session management based on user credentials. This can be accomplished in many ways.

For instance, you may accomplish this by simply wrapping your database access with a back-end system. Your desktop clients are oblivious to the database and interact solely with the back-end system. Unfortunately, implementing this level of indirection is not trivial if you have to do it from scratch but it will certainly make your application more robust and flexible. WCF services can help accomplish this.

link|flag
I missed sipwiz answer. It is pretty much the same as this one. – Newbie Nov 5 at 2:10
vote up 3 vote down

Generally, it's better to ask the user for the credentials so that each account can be enabled or disabled by the administrator. Barring that, there are APIs for encrypting all or part of the configuration file. Here's a sample article:

http://www.codeproject.com/KB/dotnet/EncryptingTheAppConfig.aspx

link|flag
Yes, ask the user. – jeffamaphone Nov 5 at 1:25
+1 Use system.configuration.configurationmanager with an encrypted connection string. Or unique credentials. – J.Hendrix Nov 5 at 3:14

Your Answer

Get an OpenID
or

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