Staging Environment: Content and features may be unstable or change without notice.
Search for packages
Package details: pkg:pypi/flask-appbuilder@3.2.0
purl pkg:pypi/flask-appbuilder@3.2.0
Next non-vulnerable version 4.8.1
Latest non-vulnerable version 4.8.1
Risk 4.0
Vulnerabilities affecting this package (13)
Vulnerability Summary Fixed by
VCID-7ek6-k8zm-97g4
Aliases:
CVE-2023-29005
GHSA-9hcr-9hcv-x6pv
Flask-AppBuilder Has No Rate Limiting on Login AUTH DB Lack of rate limiting will allow an attacker to brute-force user credentials.
4.3.0
Affected by 6 other vulnerabilities.
VCID-7kd2-6yuh-9fe4
Aliases:
CVE-2022-21659
GHSA-wfjw-w6pv-8p7f
PYSEC-2022-24
Flask-AppBuilder is an application development framework, built on top of the Flask web framework. In affected versions there exists a user enumeration vulnerability. This vulnerability allows for a non authenticated user to enumerate existing accounts by timing the response time from the server when you are logging in. Users are advised to upgrade to version 3.4.4 as soon as possible. There are no known workarounds for this issue.
3.4.2
Affected by 10 other vulnerabilities.
3.4.4
Affected by 9 other vulnerabilities.
VCID-8zwq-xg8n-q7g9
Aliases:
CVE-2025-32962
GHSA-99pm-ch96-ccp2
Flask-AppBuilder open redirect vulnerability using HTTP host injection Flask-AppBuilder prior to 4.6.2 would allow for a malicious unauthenticated actor to perform an open redirect by manipulating the Host header in HTTP requests.
4.6.2
Affected by 1 other vulnerability.
VCID-agw1-8rq2-nue5
Aliases:
CVE-2022-31177
GHSA-32ff-4g79-vgfc
GMS-2022-3340
PYSEC-2022-247
Flask-AppBuilder is an application development framework built on top of Flask python framework. In versions prior to 4.1.3 an authenticated Admin user could query other users by their salted and hashed passwords strings. These filters could be made by using partial hashed password strings. The response would not include the hashed passwords, but an attacker could infer partial password hashes and their respective users. This issue has been fixed in version 4.1.3. Users are advised to upgrade. There are no known workarounds for this issue.
4.1.3
Affected by 7 other vulnerabilities.
VCID-hcrt-cr97-t3g5
Aliases:
CVE-2021-32805
GHSA-624f-cqvr-3qw4
PYSEC-2021-359
Flask-AppBuilder is an application development framework, built on top of Flask. In affected versions if using Flask-AppBuilder OAuth, an attacker can share a carefully crafted URL with a trusted domain for an application built with Flask-AppBuilder, this URL can redirect a user to a malicious site. This is an open redirect vulnerability. To resolve this issue upgrade to Flask-AppBuilder 3.2.2 or above. If upgrading is infeasible users may filter HTTP traffic containing `?next={next-site}` where the `next-site` domain is different from the application you are protecting as a workaround.
3.3.2
Affected by 11 other vulnerabilities.
VCID-hg35-2qm4-b7h9
Aliases:
CVE-2025-24023
GHSA-p8q5-cvwx-wvwp
PYSEC-2025-15
Flask-AppBuilder is an application development framework. Prior to 4.5.3, Flask-AppBuilder allows unauthenticated users to enumerate existing usernames by timing the response time from the server when brute forcing requests to login. This vulnerability is fixed in 4.5.3.
4.5.3
Affected by 2 other vulnerabilities.
VCID-k3kr-tvxd-73hx
Aliases:
CVE-2023-34110
GHSA-jhpr-j7cq-3jp3
PYSEC-2023-94
Flask-AppBuilder is an application development framework, built on top of Flask. Prior to version 4.3.2, an authenticated malicious actor with Admin privileges, could by adding a special character on the add, edit User forms trigger a database error, this error is surfaced back to this actor on the UI. On certain database engines this error can include the entire user row including the pbkdf2:sha256 hashed password. This vulnerability has been fixed in version 4.3.2.
4.3.2
Affected by 5 other vulnerabilities.
VCID-nc2g-v8pn-nqcy
Aliases:
CVE-2024-25128
GHSA-j2pw-vp55-fqqj
Flask-AppBuilder vulnerable to incorrect authentication when using auth type OpenID ### Impact When Flask-AppBuilder is set to AUTH_TYPE AUTH_OID, allows an attacker to forge an HTTP request, that could deceive the backend into using any requested OpenID service. This vulnerability could grant an attacker unauthorised privilege access if a custom OpenID service is deployed by the attacker and accessible by the backend. This vulnerability is only exploitable when the application is using the old (deprecated 10 years ago) OpenID 2.0 authorization protocol (which is very different from the popular OIDC - Open ID Connect - popular protocol used today). Currently, this protocol is regarded as legacy, with significantly reduced usage and not supported for several years by major authorization providers. ### Patches Upgrade to Flask-AppBuilder 4.3.11 ### Workarounds If upgrade is not possible add the following to your config: ``` from flask import flash, redirect from flask_appbuilder import expose from flask_appbuilder.security.sqla.manager import SecurityManager from flask_appbuilder.security.views import AuthOIDView from flask_appbuilder.security.forms import LoginForm_oid basedir = os.path.abspath(os.path.dirname(__file__)) class FixedOIDView(AuthOIDView): @expose("/login/", methods=["GET", "POST"]) def login(self, flag=True): form = LoginForm_oid() if form.validate_on_submit(): identity_url = None for provider in self.appbuilder.sm.openid_providers: if provider.get("url") == form.openid.data: identity_url = form.openid.data if identity_url is None: flash(self.invalid_login_message, "warning") return redirect(self.appbuilder.get_url_for_login) return super().login(flag=flag) class FixedSecurityManager(SecurityManager): authoidview = FixedOIDView FAB_SECURITY_MANAGER_CLASS = "config.FixedSecurityManager" ```
4.3.11
Affected by 4 other vulnerabilities.
VCID-q16k-8utn-vfgp
Aliases:
CVE-2021-41265
GHSA-m3rf-7m4w-r66q
PYSEC-2021-851
Flask-AppBuilder is a development framework built on top of Flask. Verions prior to 3.3.4 contain an improper authentication vulnerability in the REST API. The issue allows for a malicious actor with a carefully crafted request to successfully authenticate and gain access to existing protected REST API endpoints. This only affects non database authentication types and new REST API endpoints. Users should upgrade to Flask-AppBuilder 3.3.4 to receive a patch.
3.3.4
Affected by 10 other vulnerabilities.
VCID-swdd-djht-pbbh
Aliases:
CVE-2024-45314
GHSA-fw5r-6m3x-rh7p
Flask-AppBuilder's login form allows browser to cache sensitive fields Auth DB login form default cache directives allows browser to locally store sensitive data. This can be an issue on environments using shared computer resources.
4.5.1
Affected by 3 other vulnerabilities.
VCID-t22u-emet-kugw
Aliases:
CVE-2022-24776
GHSA-2ccw-7px8-vmpf
URL Redirection to Untrusted Site ('Open Redirect') Flask-AppBuilder is an application development framework, built on top of the Flask web framework. Flask-AppBuilder contains an open redirect vulnerability when using database authentication login page on versions below 3.4.5. This issue is fixed in version 3.4.5. There are currently no known workarounds.
3.4.5
Affected by 8 other vulnerabilities.
VCID-t897-gphs-wugu
Aliases:
CVE-2025-58065
GHSA-765j-9r45-w2q2
Flask App Builder has an Authentication Bypass vulnerability when using non AUTH_DB methods When Flask-AppBuilder is configured to use OAuth, LDAP, or other non-database authentication methods, the password reset endpoint remains registered and accessible, despite not being displayed in the user interface. This allows an enabled user to reset their password and be able to create JWT tokens even after the user is disabled on the authentication provider.
4.8.1
Affected by 0 other vulnerabilities.
VCID-v1vh-ycet-23ec
Aliases:
BIT-airflow-2021-29621
CVE-2021-29621
GHSA-434h-p4gx-jm89
PYSEC-2021-90
Flask-AppBuilder is a development framework, built on top of Flask. User enumeration in database authentication in Flask-AppBuilder <= 3.2.3. Allows for a non authenticated user to enumerate existing accounts by timing the response time from the server when you are logging in. Upgrade to version 3.3.0 or higher to resolve.
3.3.0
Affected by 12 other vulnerabilities.
Vulnerabilities fixed by this package (0)
Vulnerability Summary Aliases
This package is not known to fix vulnerabilities.

Date Actor Action Vulnerability Source VulnerableCode Version
2026-06-06T06:06:05.694551+00:00 GitLab Importer Affected by VCID-t897-gphs-wugu https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Flask-AppBuilder/CVE-2025-58065.yml 38.6.0
2026-06-06T05:49:59.261528+00:00 GitLab Importer Affected by VCID-8zwq-xg8n-q7g9 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Flask-AppBuilder/CVE-2025-32962.yml 38.6.0
2026-06-06T05:41:21.716689+00:00 GitLab Importer Affected by VCID-hg35-2qm4-b7h9 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Flask-AppBuilder/CVE-2025-24023.yml 38.6.0
2026-06-06T05:21:24.568540+00:00 GitLab Importer Affected by VCID-swdd-djht-pbbh https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Flask-AppBuilder/CVE-2024-45314.yml 38.6.0
2026-06-06T04:42:23.277365+00:00 GitLab Importer Affected by VCID-nc2g-v8pn-nqcy https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Flask-AppBuilder/CVE-2024-25128.yml 38.6.0
2026-06-06T03:52:19.702229+00:00 GitLab Importer Affected by VCID-k3kr-tvxd-73hx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Flask-AppBuilder/CVE-2023-34110.yml 38.6.0
2026-06-06T03:39:31.784873+00:00 GitLab Importer Affected by VCID-7ek6-k8zm-97g4 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Flask-AppBuilder/CVE-2023-29005.yml 38.6.0
2026-06-06T02:43:31.683915+00:00 GitLab Importer Affected by VCID-agw1-8rq2-nue5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Flask-AppBuilder/CVE-2022-31177.yml 38.6.0
2026-06-06T01:37:42.216308+00:00 GitLab Importer Affected by VCID-t22u-emet-kugw https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Flask-AppBuilder/CVE-2022-24776.yml 38.6.0
2026-06-06T01:20:47.271755+00:00 GitLab Importer Affected by VCID-7kd2-6yuh-9fe4 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Flask-AppBuilder/CVE-2022-21659.yml 38.6.0
2026-06-06T01:12:52.449547+00:00 GitLab Importer Affected by VCID-q16k-8utn-vfgp https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Flask-AppBuilder/CVE-2021-41265.yml 38.6.0
2026-06-06T00:58:57.753387+00:00 GitLab Importer Affected by VCID-hcrt-cr97-t3g5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Flask-AppBuilder/CVE-2021-32805.yml 38.6.0
2026-06-06T00:43:04.129246+00:00 GitLab Importer Affected by VCID-v1vh-ycet-23ec https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Flask-AppBuilder/CVE-2021-29621.yml 38.6.0
2026-06-05T17:04:27.226801+00:00 PyPI Importer Affected by VCID-hg35-2qm4-b7h9 https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.6.0
2026-06-05T17:02:45.845672+00:00 PyPI Importer Affected by VCID-k3kr-tvxd-73hx https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.6.0
2026-06-05T17:02:06.622889+00:00 PyPI Importer Affected by VCID-agw1-8rq2-nue5 https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.6.0
2026-06-05T17:01:28.745934+00:00 PyPI Importer Affected by VCID-7kd2-6yuh-9fe4 https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.6.0
2026-06-05T17:01:23.810092+00:00 PyPI Importer Affected by VCID-q16k-8utn-vfgp https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.6.0
2026-06-05T17:00:31.210152+00:00 PyPI Importer Affected by VCID-hcrt-cr97-t3g5 https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.6.0
2026-06-05T17:00:12.129632+00:00 PyPI Importer Affected by VCID-v1vh-ycet-23ec https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.6.0
2026-06-02T04:22:49.279630+00:00 Pypa Importer Affected by VCID-hg35-2qm4-b7h9 https://github.com/pypa/advisory-database/blob/main/vulns/flask-appbuilder/PYSEC-2025-15.yaml 38.6.0
2026-06-02T04:18:57.798211+00:00 Pypa Importer Affected by VCID-k3kr-tvxd-73hx https://github.com/pypa/advisory-database/blob/main/vulns/flask-appbuilder/PYSEC-2023-94.yaml 38.6.0
2026-06-02T04:17:32.494108+00:00 Pypa Importer Affected by VCID-agw1-8rq2-nue5 https://github.com/pypa/advisory-database/blob/main/vulns/flask-appbuilder/PYSEC-2022-247.yaml 38.6.0
2026-06-02T04:16:22.885786+00:00 Pypa Importer Affected by VCID-7kd2-6yuh-9fe4 https://github.com/pypa/advisory-database/blob/main/vulns/flask-appbuilder/PYSEC-2022-24.yaml 38.6.0
2026-06-02T04:16:11.494149+00:00 Pypa Importer Affected by VCID-q16k-8utn-vfgp https://github.com/pypa/advisory-database/blob/main/vulns/flask-appbuilder/PYSEC-2021-851.yaml 38.6.0
2026-06-02T04:14:41.183470+00:00 Pypa Importer Affected by VCID-hcrt-cr97-t3g5 https://github.com/pypa/advisory-database/blob/main/vulns/flask-appbuilder/PYSEC-2021-359.yaml 38.6.0
2026-06-02T04:14:05.149856+00:00 Pypa Importer Affected by VCID-v1vh-ycet-23ec https://github.com/pypa/advisory-database/blob/main/vulns/flask-appbuilder/PYSEC-2021-90.yaml 38.6.0