security: harden default CouchDB credentials#8234
Open
RinZ27 wants to merge 1 commit intonasa:masterfrom
Open
Conversation
Replaced hardcoded 'password' with environment variable. This prevents accidental exposure when running CouchDB via Docker Compose and follows industry standard security practices.
d13063b to
cac254c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updated the CouchDB Docker Compose configuration to remove hardcoded default credentials. Using a hardcoded password like
passwordis a security risk, especially if the service is accidentally exposed or used in shared environments.Changes
COUCHDB_PASSWORDwith an environment variable reference${COUCHDB_PASSWORD:-must_be_changed}.COUCHDB_USERvariable reference for consistency.This change encourages better security hygiene by forcing users to define credentials via environment variables while providing a clear indicator that the default value must be updated.
Proof of Concept:
A simple port scan for 5984 could allow unauthorized administrative access if the container is running with these default settings. By transitioning to environment variables, we reduce the blast radius of default configurations.