flask-security icon indicating copy to clipboard operation
flask-security copied to clipboard

Quick and simple security for Flask applications

Results 100 flask-security issues
Sort by recently updated
recently updated
newest added

This request includes the following changes: Prevent translated messages from being cached, so that language can be changed dynamically. Added configuration for SECURITY_POST_FORGOT_VIEW (This specifies the page to transition to...

This fixes the documentation. But, on the same topic, currently the extension doesn't really support plaintext anymore, and I guess it's not encouraged per se: https://github.com/mattupstate/flask-security/blob/89198288bc416a7921b4973d8e897993942bb428/flask_security/utils.py#L120-L127 So why not eliminate...

How can I build rest api to reset password, I don't want any form or template.

I'm using Python 2.7, the unittest in the standard library, and I installed the mock package; Right now I'm trying to patch os.path.exists and one of my own functions. If...

``` def register(): """View function which handles a registration request.""" if _security.confirmable or request.is_json: form_class = _security.confirm_register_form else: form_class = _security.register_form ``` the or request.is_json prevent sending ajax to the...

Hello everyone. I'm new to flask security and getting to grips. Great Project. I have a question and i apologize if it has already been asked. I've done a search...

I am seeing more than 10 queries into User/Role tables for my average web page, which displays a few charts. Is this normal? It unnecessarily increase database traffic, and clutters...

discussion

I had t[his issue with flask mail ](https://github.com/mattupstate/flask-mail/issues/128)and fixed it by changing email.header.MAXLINELIN. Now all my emails are properly sent except the ones by flask security .. The proplem still...

I have an app with some web views and forms, so I have CSRF enabled. I would also like to have a few API endpoints working with the same app....

Previously the default was plaintext, nowadays it's bcrypt, but the usage example on the website does not define the SECURITY_PASSWORD_SALT.

documentation
help wanted :sos: