Skip to content

v1.9.0 - Option to Disable Strict URL Rules for Custom Word Lists

Compare
Choose a tag to compare
@jocxfin jocxfin released this 30 May 22:51
· 27 commits to main since this release
e39a058

Added:

  • Option to Disable Strict URL Rules for Custom Word Lists: You can now disable the strict URL rules for custom word lists by setting the DISABLE_URL_CHECK environment variable.
  • Security Warning: It is recommended not to set DISABLE_URL_CHECK to true if your instance is accessible over the internet, as this could compromise your host machine’s IP.
  • Default Value: The default value of DISABLE_URL_CHECK is false if not set otherwise.
  • Usage: Set DISABLE_URL_CHECK to true to use any word lists available on the internet.

To use:

docker pull jocxfin/pwgen:latest
docker run -d -p 5069:5069 jocxfin/pwgen:latest

Offline mode:

docker pull jocxfin/pwgen:latest
docker run -d -e NO_API_CHECK=true -p 5069:5069 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 \\
  jocxfin/pwgen:latest

Quick and straightforward improvements for a better tool.