Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions engines/arachni/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ attrs==18.2.0
certifi
chardet==3.0.4
click
Flask==2.2.3
Flask==2.2.5
funcsigs==1.0.2
gevent==1.4.0
greenlet==0.4.15
gunicorn==20.0.4
idna==2.5
gunicorn==23.0.0
idna==3.7
itsdangerous
Jinja2==3.1.2
Jinja2==3.1.6
MarkupSafe==2.1.1
more-itertools==4.3.0
pathlib2==2.3.2
Expand All @@ -19,9 +19,10 @@ pluggy==0.7.1
psutil==5.6.7
py==1.10.0
pytest==3.8.1
requests==2.28.2
requests==2.32.4
scandir==1.9.0
six==1.11.0
urllib3==1.26.5
werkzeug==2.2.3
setuptools==65.5.1 # not directly required, pinned by Snyk to avoid a vulnerability
urllib3==2.5.0
werkzeug==3.0.6
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Flask-Werkzeug Compatibility Issue

Flask 2.2.5 is incompatible with Werkzeug 3.0.6. Flask 2.2.x expects Werkzeug 2.x, but Werkzeug 3.0.x introduced breaking changes. This version mismatch will likely cause runtime errors, preventing the application from starting.

Fix in Cursor Fix in Web

setuptools==78.1.1 # not directly required, pinned by Snyk to avoid a vulnerability
zipp>=3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability
Loading