Click here to Skip to main content
15,888,579 members
Home / Discussions / C#
   

C#

 
QuestionHow to secure password from developers Pin
srikrishnathanthri20-Jun-16 20:01
srikrishnathanthri20-Jun-16 20:01 
AnswerRe: How to secure password from developers Pin
OriginalGriff20-Jun-16 20:38
mveOriginalGriff20-Jun-16 20:38 
AnswerRe: How to secure password from developers Pin
Richard MacCutchan20-Jun-16 20:39
mveRichard MacCutchan20-Jun-16 20:39 
AnswerRe: How to secure password from developers Pin
Nathan Minier21-Jun-16 2:06
professionalNathan Minier21-Jun-16 2:06 
GeneralRe: How to secure password from developers Pin
Eddy Vluggen21-Jun-16 2:19
professionalEddy Vluggen21-Jun-16 2:19 
GeneralRe: How to secure password from developers Pin
Nathan Minier21-Jun-16 2:22
professionalNathan Minier21-Jun-16 2:22 
GeneralRe: How to secure password from developers Pin
Eddy Vluggen21-Jun-16 4:56
professionalEddy Vluggen21-Jun-16 4:56 
AnswerRe: How to secure password from developers Pin
Dave Kreskowiak21-Jun-16 3:05
mveDave Kreskowiak21-Jun-16 3:05 
All code that is running is running AS THE USER THAT LAUNCHED IT.

If the developers cannot access the content of the config file, neither can Visual Studio nor the application the developers launch in the debugger.

You seem to have only a single environment, production, where you need at least three. You need a developer environment that the developers have enough access to so they can develop the application and the database. You need a test environment that mirrors production so you can test the application and database changes before you put it in production and also test the deployment of the application and database changes. Finally, and obviously, you need a production environment.

In your case, all three of these need to have their own separate database servers with their own connection strings. They don't need to be the same.

But, it comes down to the point where you absolutely need to trust at least two people with the passwords to the production database. They don't have to be developers but they do have to know what they're doing with connection strings. You cannot avoid this.

But, on top of all of this, you and your SQL DBAs, system admins and networking people need to understand security, in SQL, in Windows Server, NTFS, ... to correctly setup every environment and all of the servers and shares to make sure nobody has more permissions than they need to do their jobs.
A guide to posting questions on CodeProject

Click this: Asking questions is a skill.
Seriously, do it.

Dave Kreskowiak

QuestionReturn Newest Subfolder-Name (from Main-Folder-Loop) Pin
gpc4420-Jun-16 4:29
gpc4420-Jun-16 4:29 
AnswerRe: Return Newest Subfolder-Name (from Main-Folder-Loop) Pin
Pete O'Hanlon20-Jun-16 4:51
mvePete O'Hanlon20-Jun-16 4:51 
QuestionParse CSV file with two delimiters Pin
VK1920-Jun-16 2:41
VK1920-Jun-16 2:41 
AnswerRe: Parse CSV file with two delimiters Pin
Pete O'Hanlon20-Jun-16 2:53
mvePete O'Hanlon20-Jun-16 2:53 
AnswerRe: Parse CSV file with two delimiters Pin
OriginalGriff20-Jun-16 2:53
mveOriginalGriff20-Jun-16 2:53 
AnswerRe: Parse CSV file with two delimiters Pin
Sascha Lefèvre20-Jun-16 2:56
professionalSascha Lefèvre20-Jun-16 2:56 
GeneralRe: Parse CSV file with two delimiters Pin
VK1920-Jun-16 3:20
VK1920-Jun-16 3:20 
GeneralRe: Parse CSV file with two delimiters Pin
Dave Kreskowiak20-Jun-16 3:57
mveDave Kreskowiak20-Jun-16 3:57 
AnswerRe: Parse CSV file with two delimiters Pin
PIEBALDconsult20-Jun-16 3:28
mvePIEBALDconsult20-Jun-16 3:28 
GeneralRe: Parse CSV file with two delimiters Pin
VK1920-Jun-16 3:31
VK1920-Jun-16 3:31 
AnswerRe: Parse CSV file with two delimiters Pin
Patrice T20-Jun-16 6:43
mvePatrice T20-Jun-16 6:43 
GeneralRe: Parse CSV file with two delimiters Pin
Richard Deeming20-Jun-16 6:52
mveRichard Deeming20-Jun-16 6:52 
GeneralRe: Parse CSV file with two delimiters Pin
Patrice T20-Jun-16 6:58
mvePatrice T20-Jun-16 6:58 
AnswerRe: Parse CSV file with two delimiters Pin
Gerry Schmitz20-Jun-16 16:47
mveGerry Schmitz20-Jun-16 16:47 
QuestionTemplate for Id Cards Pin
suregirish19-Jun-16 23:35
suregirish19-Jun-16 23:35 
AnswerRe: Template for Id Cards Pin
Richard MacCutchan19-Jun-16 23:57
mveRichard MacCutchan19-Jun-16 23:57 
GeneralRe: Template for Id Cards Pin
suregirish20-Jun-16 0:07
suregirish20-Jun-16 0:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.