Skip to content
Snippets Groups Projects
Commit 8c6f9b5b authored by Zitnik, Anze's avatar Zitnik, Anze
Browse files

Fixed useless Exception throwing in w3af.

parent 8dfc3a89
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ FROM ubuntu:18.04 ...@@ -3,7 +3,7 @@ FROM ubuntu:18.04
COPY install/base.sh /tmp/install/ COPY install/base.sh /tmp/install/
RUN chmod +x /tmp/install/base.sh && /tmp/install/base.sh RUN chmod +x /tmp/install/base.sh && /tmp/install/base.sh
COPY install/requirements.txt install/w3af_output_fix.patch install/w3af-lz4.patch /tmp/ COPY install/requirements.txt install/w3af_output_fix.patch install/w3af-lz4.patch install/w3af-scans.py.patch /tmp/
COPY install/w3af.sh /tmp/install/ COPY install/w3af.sh /tmp/install/
RUN chmod +x /tmp/install/w3af.sh && /tmp/install/w3af.sh RUN chmod +x /tmp/install/w3af.sh && /tmp/install/w3af.sh
......
VERSION=v1.3.3 VERSION=v1.3.4
SERVICE=vat-genscan SERVICE=vat-genscan
96c96
< except (AttributeError, IOError) as _:
---
> except (AttributeError, IOError, OSError) as _:
...@@ -33,4 +33,5 @@ mv w3af-1910600684c22c767a1105fbfcb051db73ad1280 /service/w3af ...@@ -33,4 +33,5 @@ mv w3af-1910600684c22c767a1105fbfcb051db73ad1280 /service/w3af
#enable other output plugins for w3af API #enable other output plugins for w3af API
patch /service/w3af/w3af/core/ui/api/utils/scans.py /tmp/w3af_output_fix.patch patch /service/w3af/w3af/core/ui/api/utils/scans.py /tmp/w3af_output_fix.patch
patch /service/w3af/w3af/core/controllers/dependency_check/requirements.py /tmp/w3af-lz4.patch patch /service/w3af/w3af/core/controllers/dependency_check/requirements.py /tmp/w3af-lz4.patch
patch /service/w3af/w3af/core/ui/api/utils/scans.py /tmp/w3af-scans.py.patch
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment