Fixed improper parsing of HTTP requests in Pallets Werkzeug v2.1.0 and below (CVE-2022-29361). Fixes #7602

This commit is contained in:
Akshay Joshi
2022-08-16 12:20:01 +05:30
parent 06d454473c
commit 2d27a97b8c
4 changed files with 4 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ import copy
from flask import render_template, request, current_app
from flask_babel import gettext
from flask_security import login_required
from werkzeug.useragents import UserAgent
from werkzeug.user_agent import UserAgent
from pgadmin.utils import PgAdminModule, \
SHORTCUT_FIELDS as shortcut_fields, \

View File

@@ -14,7 +14,7 @@ from flask import url_for, request
from flask import render_template, current_app as app
from flask_security import login_required
from flask_babel import gettext
from werkzeug.useragents import UserAgent
from werkzeug.user_agent import UserAgent
from pgadmin.utils import PgAdminModule, \
SHORTCUT_FIELDS as shortcut_fields
from pgadmin.utils.ajax import make_json_response, bad_request, \