Web security audit base pipeline
This commit is contained in:
21
Makefile
Normal file
21
Makefile
Normal 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
|
Reference in New Issue
Block a user