##// 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:

r2065:adc2d1ca default
r2128:f22a9ea9 default
Show More
permissions_perms.mako
5 lines | 203 B | application/x-mako | MakoHtmlLexer
templating: use .mako as extensions for template files.
r1282 <h2>${_('Default User Permissions Overview')}</h2>
## permissions overview
<%namespace name="p" file="/base/perms_summary.mako"/>
auth: expose a option to calculate how we end up having super-admin permission....
r2065 ${p.perms_summary(c.perm_user.permissions_full_details, show_all=True)}