refactor: removed unused code
docs: added answer for Q3.4 Signed-off-by: Klagarge <remi@heredero.ch>
This commit is contained in:
@@ -1,8 +1,6 @@
|
|||||||
variables:
|
variables:
|
||||||
DOCKER_IMAGE_TEST: registry.forge.hefr.ch/klagarge/mse2425-grp09/python-pdm:latest
|
DOCKER_IMAGE_TEST: registry.forge.hefr.ch/klagarge/mse2425-grp09/python-pdm:latest
|
||||||
DOCKER_IMAGE_APP: registry.forge.hefr.ch/klagarge/mse2425-grp09/devsecops-app:latest
|
DOCKER_IMAGE_APP: registry.forge.hefr.ch/klagarge/mse2425-grp09/devsecops-app:latest
|
||||||
APP_PORT: 5000
|
|
||||||
TARGET_URL: "http://app:${APP_PORT}"
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
image: $DOCKER_IMAGE_TEST
|
image: $DOCKER_IMAGE_TEST
|
||||||
@@ -88,18 +86,8 @@ docker-build-app:
|
|||||||
|
|
||||||
include:
|
include:
|
||||||
- template: Jobs/SAST.gitlab-ci.yml
|
- template: Jobs/SAST.gitlab-ci.yml
|
||||||
# - template: DAST.gitlab-ci.yml
|
|
||||||
|
|
||||||
#dast-ci:
|
dast:
|
||||||
# stage: dast
|
|
||||||
# dast_configuration:
|
|
||||||
# site_profile: "dast-site-profile-devsecops-mse"
|
|
||||||
# scanner_profile: "dast-scanner-profile-devsecops-mse"
|
|
||||||
#services:
|
|
||||||
# - name: $DOCKER_IMAGE_APP
|
|
||||||
# alias: app
|
|
||||||
|
|
||||||
dast-local:
|
|
||||||
stage: dast
|
stage: dast
|
||||||
image: ghcr.io/zaproxy/zaproxy:stable
|
image: ghcr.io/zaproxy/zaproxy:stable
|
||||||
services:
|
services:
|
||||||
@@ -109,4 +97,3 @@ dast-local:
|
|||||||
- echo "Waiting for the app to start on http://app:5000"
|
- echo "Waiting for the app to start on http://app:5000"
|
||||||
- timeout 60 bash -c 'until curl -s http://app:5000; do echo "Waiting..."; sleep 3; done'
|
- timeout 60 bash -c 'until curl -s http://app:5000; do echo "Waiting..."; sleep 3; done'
|
||||||
- zap-full-scan.py -t http://app:5000 -I
|
- zap-full-scan.py -t http://app:5000 -I
|
||||||
allow_failure: true # Allow failure for DAST job (because GitLab is not well configured and network didn't work)
|
|
@@ -23,3 +23,13 @@ For some reasons, semgrep works locally, but not on GitLab. Here is the report w
|
|||||||
After performing a scan, we can see a few alerts as seen on this screenshot :
|
After performing a scan, we can see a few alerts as seen on this screenshot :
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
## Q3.4
|
||||||
|
The integrate DAST in Github doesn't work on our version, we need the _Ultimate_ version of GitLab selfhosted.
|
||||||
|
|
||||||
|
We create a new Docker image for the application. This image auto launch the flask app when the container is started.
|
||||||
|
|
||||||
|
We used this image as a service for the DAST stage on our CI.
|
||||||
|
The stage use zaproxy to test the application. Warning do not return wailure, so the stage pass if no error is found by the OWASP ZAP.
|
||||||
|
|
||||||
|
We don't understand why the stage fail when we try to provide the html report as artifact. So if the stage fail, we can see the error in the logs.
|
||||||
|
Reference in New Issue
Block a user