From e3e71180a78854845b0210a87c39a89d8ec01e5a Mon Sep 17 00:00:00 2001 From: S-Trateg228 <84473124+S-Trateg228@users.noreply.github.com> Date: Fri, 22 Mar 2024 21:45:34 +0300 Subject: [PATCH] fix requirements.txt to last supported version of lxml Without this pip will try to install lxml 5, but it is unsupported by current code base, so the easiest solution is to add this restriction --- Apps/Python-flask-xxe/vulnserver/src/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Apps/Python-flask-xxe/vulnserver/src/requirements.txt b/Apps/Python-flask-xxe/vulnserver/src/requirements.txt index c48c30d..ef901aa 100644 --- a/Apps/Python-flask-xxe/vulnserver/src/requirements.txt +++ b/Apps/Python-flask-xxe/vulnserver/src/requirements.txt @@ -1,3 +1,3 @@ flask -lxml +lxml==4.9.4 pycrypto