19 lines
456 B
Makefile
19 lines
456 B
Makefile
|
|
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 \
|
|
--net host \
|
|
-v "$(PWD)/resources/com/cadoles/w3af/audit.w3af.tmpl:/home/w3af/w3af/audit.w3af.tmpl:ro" \
|
|
jenkins-w3af:latest \
|
|
/bin/sh
|
|
|
|
.PHONY: image-w3af |