##// END OF EJS Templates
security: limit the maximum password lenght to 72 characters to prevent possible...
security: limit the maximum password lenght to 72 characters to prevent possible server side resource consumption attack. - bcrypt heavy computation can lead to DOS using a very long password .eg 10**8 lenght. - we allowed this on registration or on password update

File last commit:

r1093:662d72d1 default
r2128:f22a9ea9 default
Show More
.hgignore
66 lines | 1.1 KiB | text/plain | TextLexer
syntax: glob
*.egg
*.egg-info
*.idea
*.orig
*.pyc
*.sqlite-journal
*.swp
*.tox
*.DS_Store*
rhodecode/public/js/src/components/**/*.css
syntax: regexp
#.filename
^\.settings$
^\.project$
^\.pydevproject$
^\.coverage$
^\.cache.*$
^\.rhodecode$
^rcextensions
^_dev
^._dev
^build/
^bower_components/
^coverage\.xml$
^data$
^\.eggs/
^configs/data$
^dev.ini$
^acceptance_tests/dev.*\.ini$
^dist/
^fabfile.py
^htmlcov
^junit\.xml$
^node_modules/
^pylint.log$
^rcextensions/
^result$
^rhodecode/public/css/style.css$
^rhodecode/public/css/style-polymer.css$
^rhodecode/public/js/rhodecode-components.html$
^rhodecode/public/js/scripts.js$
^rhodecode/public/js/rhodecode-components.js$
^rhodecode/public/js/src/components/root-styles.gen.html$
^rhodecode/public/js/vendors/webcomponentsjs/
^rhodecode\.db$
^rhodecode\.log$
^rhodecode_dev\.log$
^test\.db$
# ac-tests
^acceptance_tests/\.cache.*$
^acceptance_tests/externals
^acceptance_tests/ghostdriver.log$
^acceptance_tests/local(_.+)?\.ini$
# docs
^docs/_build$
^docs/result$
^docs-internal/_build$
# Cythonized things
^rhodecode/.*\.(c|so)$