Update Collabora image version & banned-password-list#202
Open
cryinkfly wants to merge 6 commits intoopencloud-eu:mainfrom
Open
Update Collabora image version & banned-password-list#202cryinkfly wants to merge 6 commits intoopencloud-eu:mainfrom
cryinkfly wants to merge 6 commits intoopencloud-eu:mainfrom
Conversation
Contributor
|
Alternative: URL-based loading Instead of committing 10k lines to the repo, consider URL-based loading via env var. Simple (single list): command: ["-c", "
[ -n \"$BANNED_PASSWORDS_URL\" ] && curl -sfL \"$BANNED_PASSWORDS_URL\" -o /etc/opencloud/banned-password-list.txt;
opencloud init || true; opencloud server
"]# .env
BANNED_PASSWORDS_URL=https://raw.githubusercontent.com/danielmiessler/SecLists/master/Passwords/Common-Credentials/Language-Specific/German_common-password-list.txtAdvanced (multiple lists, merged): command: ["-c", "
[ -n \"$BANNED_PASSWORDS_URLS\" ] && echo \"$BANNED_PASSWORDS_URLS\" | tr ',' '\\n' | xargs -I{} curl -sfL {} | sort -u > /etc/opencloud/banned-password-list.txt;
opencloud init || true; opencloud server
"]# .env
BANNED_PASSWORDS_URLS=https://.../German_common-password-list.txt,https://.../10-million-password-list-top-1000.txtBenefits:
|
Author
|
Thank you for your feedback! Yes, that looks good! ... and the following is then included in the Ultimately, this change isn’t strictly necessary, but including a few sources in the official documentation, like Pi-hole does with its lists, would benefit end users. However, what could be important is updating Collabora to the new stable version 25.04.8.1.1. |
Added section for banned password list settings with examples.
Author
|
I've updated the .env.example and docker-compose.yml files. And I've reset the banned-password-list.txt file to its original values. Thanks for the help! 👍 |
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.
No description provided.