2019-12-04 20:38:33 +05:30
|
|
|
# Read more about this feature here: https://docs.gitlab.com/ee/user/application_security/dependency_scanning/
|
2019-07-07 11:18:12 +05:30
|
|
|
#
|
|
|
|
# Configure the scanning tool through the environment variables.
|
|
|
|
# List of the variables: https://gitlab.com/gitlab-org/security-products/dependency-scanning#settings
|
|
|
|
# How to set: https://docs.gitlab.com/ee/ci/yaml/#variables
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
variables:
|
2020-04-08 14:13:33 +05:30
|
|
|
SECURITY_SCANNER_IMAGE_PREFIX: "registry.gitlab.com/gitlab-org/security-products"
|
|
|
|
DS_ANALYZER_IMAGE_PREFIX: "$SECURITY_SCANNER_IMAGE_PREFIX/analyzers"
|
2020-01-01 13:55:28 +05:30
|
|
|
DS_DEFAULT_ANALYZERS: "bundler-audit, retire.js, gemnasium, gemnasium-maven, gemnasium-python"
|
2019-12-26 22:10:19 +05:30
|
|
|
DS_MAJOR_VERSION: 2
|
|
|
|
DS_DISABLE_DIND: "false"
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
dependency_scanning:
|
|
|
|
stage: test
|
|
|
|
image: docker:stable
|
|
|
|
variables:
|
|
|
|
DOCKER_DRIVER: overlay2
|
2019-09-30 21:07:59 +05:30
|
|
|
DOCKER_TLS_CERTDIR: ""
|
2019-07-07 11:18:12 +05:30
|
|
|
allow_failure: true
|
|
|
|
services:
|
|
|
|
- docker:stable-dind
|
|
|
|
script:
|
|
|
|
- export DS_VERSION=${SP_VERSION:-$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/')}
|
|
|
|
- |
|
|
|
|
if ! docker info &>/dev/null; then
|
|
|
|
if [ -z "$DOCKER_HOST" -a "$KUBERNETES_PORT" ]; then
|
|
|
|
export DOCKER_HOST='tcp://localhost:2375'
|
|
|
|
fi
|
|
|
|
fi
|
2019-07-31 22:56:46 +05:30
|
|
|
- | # this is required to avoid undesirable reset of Docker image ENV variables being set on build stage
|
|
|
|
function propagate_env_vars() {
|
|
|
|
CURRENT_ENV=$(printenv)
|
|
|
|
|
|
|
|
for VAR_NAME; do
|
|
|
|
echo $CURRENT_ENV | grep "${VAR_NAME}=" > /dev/null && echo "--env $VAR_NAME "
|
|
|
|
done
|
|
|
|
}
|
2019-07-07 11:18:12 +05:30
|
|
|
- |
|
|
|
|
docker run \
|
2019-07-31 22:56:46 +05:30
|
|
|
$(propagate_env_vars \
|
|
|
|
DS_ANALYZER_IMAGES \
|
|
|
|
DS_ANALYZER_IMAGE_PREFIX \
|
|
|
|
DS_ANALYZER_IMAGE_TAG \
|
|
|
|
DS_DEFAULT_ANALYZERS \
|
|
|
|
DS_EXCLUDED_PATHS \
|
|
|
|
DS_DOCKER_CLIENT_NEGOTIATION_TIMEOUT \
|
|
|
|
DS_PULL_ANALYZER_IMAGE_TIMEOUT \
|
|
|
|
DS_RUN_ANALYZER_TIMEOUT \
|
2019-09-30 21:07:59 +05:30
|
|
|
DS_PYTHON_VERSION \
|
2020-01-01 13:55:28 +05:30
|
|
|
DS_PIP_VERSION \
|
2019-10-12 21:52:04 +05:30
|
|
|
DS_PIP_DEPENDENCY_PATH \
|
2020-03-13 15:44:24 +05:30
|
|
|
GEMNASIUM_DB_LOCAL_PATH \
|
|
|
|
GEMNASIUM_DB_REMOTE_URL \
|
|
|
|
GEMNASIUM_DB_REF_NAME \
|
2019-09-30 21:07:59 +05:30
|
|
|
PIP_INDEX_URL \
|
|
|
|
PIP_EXTRA_INDEX_URL \
|
2020-01-01 13:55:28 +05:30
|
|
|
PIP_REQUIREMENTS_FILE \
|
2019-12-26 22:10:19 +05:30
|
|
|
MAVEN_CLI_OPTS \
|
2020-01-01 13:55:28 +05:30
|
|
|
BUNDLER_AUDIT_UPDATE_DISABLED \
|
2020-03-13 15:44:24 +05:30
|
|
|
BUNDLER_AUDIT_ADVISORY_DB_URL \
|
|
|
|
BUNDLER_AUDIT_ADVISORY_DB_REF_NAME \
|
2020-04-08 14:13:33 +05:30
|
|
|
RETIREJS_JS_ADVISORY_DB \
|
|
|
|
RETIREJS_NODE_ADVISORY_DB \
|
2019-07-31 22:56:46 +05:30
|
|
|
) \
|
2019-07-07 11:18:12 +05:30
|
|
|
--volume "$PWD:/code" \
|
|
|
|
--volume /var/run/docker.sock:/var/run/docker.sock \
|
2020-04-08 14:13:33 +05:30
|
|
|
"$SECURITY_SCANNER_IMAGE_PREFIX/dependency-scanning:$DS_VERSION" /code
|
2019-07-07 11:18:12 +05:30
|
|
|
artifacts:
|
|
|
|
reports:
|
|
|
|
dependency_scanning: gl-dependency-scanning-report.json
|
|
|
|
dependencies: []
|
|
|
|
only:
|
|
|
|
refs:
|
|
|
|
- branches
|
|
|
|
variables:
|
|
|
|
- $GITLAB_FEATURES =~ /\bdependency_scanning\b/
|
|
|
|
except:
|
|
|
|
variables:
|
|
|
|
- $DEPENDENCY_SCANNING_DISABLED
|
2019-12-26 22:10:19 +05:30
|
|
|
- $DS_DISABLE_DIND == 'true'
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
.ds-analyzer:
|
2019-12-26 22:10:19 +05:30
|
|
|
extends: dependency_scanning
|
|
|
|
services: []
|
|
|
|
except:
|
|
|
|
variables:
|
2020-03-13 15:44:24 +05:30
|
|
|
- $DEPENDENCY_SCANNING_DISABLED
|
2019-12-26 22:10:19 +05:30
|
|
|
- $DS_DISABLE_DIND == 'false'
|
|
|
|
script:
|
|
|
|
- /analyzer run
|
|
|
|
|
|
|
|
gemnasium-dependency_scanning:
|
2020-01-01 13:55:28 +05:30
|
|
|
extends: .ds-analyzer
|
2019-12-26 22:10:19 +05:30
|
|
|
image:
|
|
|
|
name: "$DS_ANALYZER_IMAGE_PREFIX/gemnasium:$DS_MAJOR_VERSION"
|
|
|
|
only:
|
|
|
|
variables:
|
|
|
|
- $GITLAB_FEATURES =~ /\bdependency_scanning\b/ &&
|
2020-03-13 15:44:24 +05:30
|
|
|
$DS_DEFAULT_ANALYZERS =~ /gemnasium([^-]|$)/ &&
|
|
|
|
$CI_PROJECT_REPOSITORY_LANGUAGES =~ /ruby|javascript|php|\bgo\b/
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
gemnasium-maven-dependency_scanning:
|
2020-01-01 13:55:28 +05:30
|
|
|
extends: .ds-analyzer
|
2019-12-26 22:10:19 +05:30
|
|
|
image:
|
|
|
|
name: "$DS_ANALYZER_IMAGE_PREFIX/gemnasium-maven:$DS_MAJOR_VERSION"
|
|
|
|
only:
|
|
|
|
variables:
|
|
|
|
- $GITLAB_FEATURES =~ /\bdependency_scanning\b/ &&
|
|
|
|
$DS_DEFAULT_ANALYZERS =~ /gemnasium-maven/ &&
|
|
|
|
$CI_PROJECT_REPOSITORY_LANGUAGES =~ /\bjava\b/
|
|
|
|
|
|
|
|
gemnasium-python-dependency_scanning:
|
2020-01-01 13:55:28 +05:30
|
|
|
extends: .ds-analyzer
|
2019-12-26 22:10:19 +05:30
|
|
|
image:
|
|
|
|
name: "$DS_ANALYZER_IMAGE_PREFIX/gemnasium-python:$DS_MAJOR_VERSION"
|
|
|
|
only:
|
|
|
|
variables:
|
|
|
|
- $GITLAB_FEATURES =~ /\bdependency_scanning\b/ &&
|
|
|
|
$DS_DEFAULT_ANALYZERS =~ /gemnasium-python/ &&
|
|
|
|
$CI_PROJECT_REPOSITORY_LANGUAGES =~ /python/
|
|
|
|
|
|
|
|
bundler-audit-dependency_scanning:
|
2020-01-01 13:55:28 +05:30
|
|
|
extends: .ds-analyzer
|
2019-12-26 22:10:19 +05:30
|
|
|
image:
|
|
|
|
name: "$DS_ANALYZER_IMAGE_PREFIX/bundler-audit:$DS_MAJOR_VERSION"
|
|
|
|
only:
|
|
|
|
variables:
|
|
|
|
- $GITLAB_FEATURES =~ /\bdependency_scanning\b/ &&
|
|
|
|
$DS_DEFAULT_ANALYZERS =~ /bundler-audit/ &&
|
|
|
|
$CI_PROJECT_REPOSITORY_LANGUAGES =~ /ruby/
|
|
|
|
|
|
|
|
retire-js-dependency_scanning:
|
2020-01-01 13:55:28 +05:30
|
|
|
extends: .ds-analyzer
|
2019-12-26 22:10:19 +05:30
|
|
|
image:
|
|
|
|
name: "$DS_ANALYZER_IMAGE_PREFIX/retire.js:$DS_MAJOR_VERSION"
|
|
|
|
only:
|
|
|
|
variables:
|
|
|
|
- $GITLAB_FEATURES =~ /\bdependency_scanning\b/ &&
|
|
|
|
$DS_DEFAULT_ANALYZERS =~ /retire.js/ &&
|
|
|
|
$CI_PROJECT_REPOSITORY_LANGUAGES =~ /javascript/
|