-
Notifications
You must be signed in to change notification settings - Fork 57
Update Collabora image version & banned-password-list #202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
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:
|
|
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.
|
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! 👍 |
No description provided.