Impact
Lack of rate limiting will allow an attacker to brute-force user credentials
Patches
Ability to enable rate limiting on Flask-AppBuilder >= 4.3.0. Use AUTH_RATE_LIMITED = True
and RATELIMIT_ENABLED = True
set the limit itself by using AUTH_RATE_LIMIT
more details on https://flask-limiter.readthedocs.io/en/stable/configuration.html. Will apply only to database authentication.
Workarounds
Implement rate limiting using a reverse proxy or other strategies.
Impact
Lack of rate limiting will allow an attacker to brute-force user credentials
Patches
Ability to enable rate limiting on Flask-AppBuilder >= 4.3.0. Use
AUTH_RATE_LIMITED = True
andRATELIMIT_ENABLED = True
set the limit itself by usingAUTH_RATE_LIMIT
more details on https://flask-limiter.readthedocs.io/en/stable/configuration.html. Will apply only to database authentication.Workarounds
Implement rate limiting using a reverse proxy or other strategies.