Web security audit base pipeline

This commit is contained in:
2019-04-15 18:35:34 +02:00
parent 27e49f4722
commit 1246eb6943
10 changed files with 3540 additions and 0 deletions

21
Makefile Normal file
View File

@ -0,0 +1,21 @@
image-w3af:
docker build \
--build-arg=HTTP_PROXY=$(HTTP_PROXY) \
--build-arg=HTTPS_PROXY=$(HTTPS_PROXY) \
--build-arg=http_proxy=$(http_proxy) \
--build-arg=https_proxy=$(https_proxy) \
-t jenkins-w3af \
./resources/com/cadoles/w3af
interactive-w3af:
docker run \
-it --rm \
-e HTTP_PROXY=$(HTTP_PROXY) \
-e HTTPS_PROXY=$(HTTPS_PROXY) \
-e http_proxy=$(http_proxy) \
-e https_proxy=$(https_proxy) \
jenkins-w3af:latest \
/bin/sh
.PHONY: image-w3af