Simple python based password generator for self hosting.
100K+
This simple docker web application is designed to generate secure passwords or passphrases with customizable options. Users can opt to generate either a random password with specific criteria or a passphrase composed of random words. It includes features for enhancing password strength, such as including uppercase letters, digits, and special characters for passwords, or capitalizing words and specifying separators for passphrases.
A demo of the software is available on https://pwgen.joonatanh.com (main branch).
MULTI_GEN=true).PP_HIDE_LANG=true), simplifying the UI based on user preference.https://raw.githubusercontent.com/ and point to .txt files, but this can be disabled to allow other sources as well.jocxfin/pwgen:latest and then run it using the following commands:docker pull jocxfin/pwgen:latest
docker run -d -p 5069:5069 jocxfin/pwgen:latest
To enable Offline Mode, append -e NO_API_CHECK=true to the docker run command:
docker run -d -p 5069:5069 -e NO_API_CHECK=true jocxfin/pwgen:latest
With environmental variables defining settings:
docker pull jocxfin/pwgen:latest
docker run -d -p 5069:5069 \\
-e NO_API_CHECK=false \\
-e PW_LENGTH=12 \\
-e PW_INCLUDE_UPPERCASE=false \\
-e PW_INCLUDE_DIGITS=false \\
-e PW_INCLUDE_SPECIAL=false \\
-e PW_EXCLUDE_HOMOGLYPHS=true \\
-e PP_WORD_COUNT=4 \\
-e PP_CAPITALIZE=false \\
-e PP_SEPARATOR_TYPE=dash \\
-e PP_USER_DEFINED_SEPARATOR='' \\
-e PP_MAX_WORD_LENGTH=12 \\
-e PP_INCLUDE_NUMBERS=false \\
-e PP_INCLUDE_SPECIAL_CHARS=false \\
-e PP_LANGUAGE=en \\
-e PP_HIDE_LANG=false \\
-e PP_LANGUAGE_CUSTOM='' \\
-e MULTI_GEN=true \\
-e GENERATE_PP=true \\
-e ROBOTS_ALLOW=false \\
-e GOOGLE_SITE_VERIFICATION='' \\
-e DISABLE_URL_CHECK=false \\
-e BASE_PATH='' \\
-e PP_LOCAL_WORDLIST=/app/custom_wordlist.txt \\
-v "A:\german.txt:/app/custom_wordlist.txt" \\
jocxfin/pwgen:latest
This project is open-source and available under the AGPL-3.0 license.
Content type
Image
Digest
sha256:b9e00a07c…
Size
101.6 MB
Last updated
about 1 year ago
docker pull jocxfin/pwgen:arm64