Reputation: 2259
What are best practices in securing passwords that are using in application? For example password for database and other services.
Upvotes: 0
Views: 117
Reputation: 3972
It all comes down to two options:
And one rule:
Accessing production passwords should require the same privileges as modifying production application that uses that passwords. E.g. passwords should be available only to application and deployment script of that application.
Details really depend on your infrastructure and requirements.
Upvotes: 2