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

In our application, we would like to disable 2FA for certain IP addresses (located in the corporate network). It seems to me that this is impossible with the current implementation...

I have a SPA application in Vue and using Flask backend with Flask-Security-Too. The auth with username & password works correctly, but I'd like to add Google handling to app...

https://github.com/mattupstate/flask-security/blob/a0e203774795f1bad289d76357237fcb604bfa01/flask_security/utils.py#L82 Isn't the whole point of Flask-Login interface for `get_id()` to avoid calling an id attribute directly? I'm implementing a backend for Google datastore which does not have id attibute.

I followed the document example of flask security with sqlAlchemy from: [basic-sqlalchemy-application-with-session](https://flask-security-too.readthedocs.io/en/stable/quickstart.html#basic-sqlalchemy-application-with-session) When I was testing the login function, after frequent login and logout(more than 20 time in one minute),...

Hi. I have a working setup using MongoEngine and I would like to set 'is_authenticated' in the database instead of always returning true. I tried to load login_user as _login_user,...

Got the issue when i tried to use flask-security with flask-babel 127.0.0.1 - - [02/Dec/2020 11:52:49] "GET /admin/ HTTP/1.1" 500 - Traceback (most recent call last): File "/Users/apple/.local/share/virtualenvs/edvay-ZAZVItV1/lib/python3.7/site-packages/flask/app.py", line 2328,...

I'm working on an internal system without access to any mailing services (and we don't really need any), is there any way to say that I don't need them? Currently...

Rebased https://github.com/mattupstate/flask-security/pull/773 and https://github.com/mattupstate/flask-security/pull/522 This PR solves: https://github.com/mattupstate/flask-security/issues/496 Much of the CI Failures were due to formatting issues. Also contains the following: - Updated release.py to accommodate Python 3 versions...

@mattupstate Links: https://pythonhosted.org/Flask-Security/quickstart.html https://flask-security.readthedocs.io/en/3.0.0/quickstart.html ### Data there now ```python # At top of file from werkzeug.config.fixers import ProxyFix # After 'Create app' app.wsgi_app = ProxyFix(app.wsgi_app, num_proxies=1) ``` To learn more...

I try to use flask_security with flask_admin, but at start up there's a problem with the context_processor: ``` File "/home/lionel/dev/knmx/knmx/launcher.py", line 6, in from knmx.app import create_app File "/home/lionel/dev/knmx/knmx/app.py", line...