2021-09-30 23:02:18 +05:30
|
|
|
# To contribute improvements to CI/CD templates, please follow the Development guide at:
|
|
|
|
# https://docs.gitlab.com/ee/development/cicd/templates.html
|
|
|
|
# This specific template is located at:
|
2021-12-11 22:18:48 +05:30
|
|
|
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Security/API-Fuzzing.latest.gitlab-ci.yml
|
2021-04-29 21:17:54 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
# Read more about this feature here: https://docs.gitlab.com/ee/user/application_security/api_fuzzing/
|
|
|
|
#
|
|
|
|
# Configure API fuzzing with CI/CD variables (https://docs.gitlab.com/ee/ci/variables/index.html).
|
2021-09-04 01:27:46 +05:30
|
|
|
# List of available variables: https://docs.gitlab.com/ee/user/application_security/api_fuzzing/#available-cicd-variables
|
2021-04-29 21:17:54 +05:30
|
|
|
|
|
|
|
variables:
|
2021-06-08 01:23:25 +05:30
|
|
|
FUZZAPI_VERSION: "1"
|
|
|
|
SECURE_ANALYZERS_PREFIX: "registry.gitlab.com/gitlab-org/security-products/analyzers"
|
2022-01-26 12:08:38 +05:30
|
|
|
FUZZAPI_IMAGE: api-fuzzing
|
2021-04-29 21:17:54 +05:30
|
|
|
|
|
|
|
apifuzzer_fuzz:
|
|
|
|
stage: fuzz
|
2022-01-26 12:08:38 +05:30
|
|
|
image: $SECURE_ANALYZERS_PREFIX/$FUZZAPI_IMAGE:$FUZZAPI_VERSION
|
2021-04-29 21:17:54 +05:30
|
|
|
allow_failure: true
|
|
|
|
rules:
|
|
|
|
- if: $API_FUZZING_DISABLED
|
|
|
|
when: never
|
|
|
|
- if: $API_FUZZING_DISABLED_FOR_DEFAULT_BRANCH &&
|
|
|
|
$CI_DEFAULT_BRANCH == $CI_COMMIT_REF_NAME
|
|
|
|
when: never
|
2021-06-08 01:23:25 +05:30
|
|
|
- if: $CI_COMMIT_BRANCH
|
2021-04-29 21:17:54 +05:30
|
|
|
script:
|
2021-06-08 01:23:25 +05:30
|
|
|
- /peach/analyzer-fuzz-api
|
2021-04-29 21:17:54 +05:30
|
|
|
artifacts:
|
|
|
|
when: always
|
|
|
|
paths:
|
2021-06-08 01:23:25 +05:30
|
|
|
- gl-assets
|
|
|
|
- gl-api-fuzzing-report.json
|
|
|
|
- gl-*.log
|
2021-04-29 21:17:54 +05:30
|
|
|
reports:
|
2021-06-08 01:23:25 +05:30
|
|
|
api_fuzzing: gl-api-fuzzing-report.json
|
2021-04-29 21:17:54 +05:30
|
|
|
|
|
|
|
# end
|