Add ZAP Full Scan support to DAST vendored template

This commit is contained in:
Victor Zagorodny 2019-04-26 13:53:17 +00:00 committed by Achilleas Pipinellis
parent 5389ff6e93
commit 478cf29c39
1 changed files with 3 additions and 1 deletions

View File

@ -30,6 +30,7 @@ dast:
- |
function dast_run() {
docker run \
--env DAST_FULL_SCAN_ENABLED \
--env DAST_TARGET_AVAILABILITY_TIMEOUT \
--volume "$PWD:/output" \
--volume /var/run/docker.sock:/var/run/docker.sock \
@ -46,7 +47,8 @@ dast:
--auth-username $DAST_USERNAME \
--auth-password $DAST_PASSWORD \
--auth-username-field $DAST_USERNAME_FIELD \
--auth-password-field $DAST_PASSWORD_FIELD
--auth-password-field $DAST_PASSWORD_FIELD \
--auth-exclude-urls $DAST_AUTH_EXCLUDE_URLS
else
dast_run
fi