In an application that needs to open a database connection, the username/password details must be sent to the database. What is the most secure way of storing, and using, this data?
|
|
The exact method depends on the environment, but in general, you store the credentials in a location which is only readable by the user that your application is running as. For example on Windows you would store the credentials in the registry in a location protected by an ACL so that only that user could read it. Optionally, you could use the DPAPI to encrypt the data so it was further protected. In Unix, you would store it in a file that was protected with |
|||
|
|
|
Excellent question. The first answer is to go with 1800 INFORMATION's suggestion: put it in an area only readable by the userid running your application.I don't think you'll get a better all-round solution than this. Other methods we've toyed with (and rejected):
|
|||
|
|
|
That depends on the database you're using. For Microsoft SQL Server you either encrypt the database connection string in the configuration or you use integrated security, where you connect to the database using the identity of the application you're connecting from. |
|||
|
|
|
not in your source code but instead in a separate file read by your application. then use system security to make this file only readable by the application user |
|||
|
|