64 KiB
type | stage | group | info |
---|---|---|---|
reference, howto | Secure | Composition Analysis | To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments |
Dependency Scanning (ULTIMATE)
INFO: Try out Dependency Scanning in GitLab Ultimate. It's free for 30 days.
The Dependency Scanning feature can automatically find security vulnerabilities in your software dependencies while you're developing and testing your applications. For example, dependency scanning lets you know if your application uses an external (open source) library that is known to be vulnerable. You can then take action to protect your application.
Dependency Scanning is often considered part of Software Composition Analysis (SCA). SCA can contain aspects of inspecting the items your code uses. These items typically include application and system dependencies that are almost always imported from external sources, rather than sourced from items you wrote yourself.
GitLab offers both Dependency Scanning and Container Scanning to ensure coverage for all of these dependency types. To cover as much of your risk area as possible, we encourage you to use all of our security scanners:
- Dependency Scanning analyzes your project and tells you which software dependencies,
including upstream dependencies, have been included in your project, and what known
risks the dependencies contain. Dependency Scanning modifies its behavior based
on the language and package manager of the project. It typically looks for a lock file
then performs a build to fetch upstream dependency information. In the case of
containers, Dependency Scanning uses the compatible manifest and reports only these
declared software dependencies (and those installed as a sub-dependency).
Dependency Scanning can not detect software dependencies that are pre-bundled
into the container's base image. To identify pre-bundled dependencies, enable
Container Scanning language scanning using the
CS_DISABLE_LANGUAGE_VULNERABILITY_SCAN
variable. - Container Scanning analyzes your containers and tells
you about known risks in the operating system's (OS) packages. You can configure it
to also report on software and language dependencies, if you enable it and use
the
CS_DISABLE_LANGUAGE_VULNERABILITY_SCAN
variable. Turning this variable on can result in some duplicate findings, as we do not yet de-duplicate results between Container Scanning and Dependency Scanning. For more details, efforts to de-duplicate these findings can be tracked in this issue.
Overview
If you're using GitLab CI/CD, you can use dependency scanning to analyze your dependencies for known vulnerabilities. GitLab scans all dependencies, including transitive dependencies (also known as nested dependencies). You can take advantage of dependency scanning by either:
- Including the dependency scanning template
in your existing
.gitlab-ci.yml
file. - Implicitly using the auto dependency scanning provided by Auto DevOps.
GitLab checks the dependency scanning report, compares the found vulnerabilities between the source and target branches, and shows the information on the merge request. The results are sorted by the severity of the vulnerability.
Requirements
To run dependency scanning jobs, by default, you need GitLab Runner with the
docker
or
kubernetes
executor.
If you're using the shared runners on GitLab.com, this is enabled by default.
WARNING:
If you use your own runners, make sure your installed version of Docker
is not 19.03.0
. See troubleshooting information for details.
WARNING: Dependency Scanning does not support run-time installation of compilers and interpreters. If you have need of this, please explain why by filling out the survey here.
Supported languages and package managers
Dependency Scanning automatically detects the languages used in the repository. All analyzers
matching the detected languages are run. There is usually no need to customize the selection of
analyzers. We recommend not specifying the analyzers so you automatically use the full selection
for best coverage, avoiding the need to make adjustments when there are deprecations or removals.
However, you can override the selection using the variable DS_EXCLUDED_ANALYZERS
.
The language detection relies on CI job rules
and searches a
maximum of two directory levels from the repository's root. For example, the
gemnasium-dependency_scanning
job is enabled if a repository contains either Gemfile
,
api/Gemfile
, or api/client/Gemfile
, but not if the only supported dependency file is api/v1/client/Gemfile
.
The following languages and dependency managers are supported:
Language | Language Versions | Package Manager | Supported files | Analyzer | Processes multiple files? |
---|---|---|---|---|---|
Ruby | N/A | Bundler |
|
Gemnasium | Y |
Gemfile.lock |
bundler-audit | N | |||
PHP | N/A | Composer | composer.lock |
Gemnasium | Y |
C | N/A | Conan | conan.lock |
Gemnasium | Y |
C++ | |||||
Go | N/A | Go | go.sum |
Gemnasium | Y |
Java | 8, 11, 13, 14, 15, or 16 | Gradle1 |
|
Gemnasium | N |
Maven | pom.xml |
Gemnasium | N | ||
JavaScript | N/A | npm |
|
Gemnasium | Y |
package.json |
Retire.js | N | |||
N/A | yarn | yarn.lock |
Gemnasium | Y | |
.NET | N/A | NuGet | packages.lock.json |
Gemnasium | Y |
C# | |||||
Python | 3.6 | setuptools | setup.py |
Gemnasium | N |
pip |
|
Gemnasium | N | ||
Pipenv | Gemnasium | N | |||
Scala | N/A | sbt3 | build.sbt |
Gemnasium | N |
-
Although Gradle with Java 8 is supported, there are other issues such that Android project builds are not supported at this time. Please see the backlog issue Android support for Dependency Scanning (gemnasium-maven) for more details.
-
The presence of a
Pipfile.lock
file alone will not trigger the analyzer; the presence of aPipfile
is still required in order for the analyzer to be executed. However, if aPipfile.lock
file is found, it will be used byGemnasium
to scan the exact package versions listed in this file.Support for
Pipfile.lock
files without requiring the presence of aPipfile
is tracked in issue: Dependency Scanning of Pipfile.lock without installing project dependencies. -
Support for sbt 1.3 and above was added in GitLab 13.9.
How analyzers obtain dependency information
GitLab analyzers obtain dependency information using one of the following two methods:
- Parsing lockfiles directly.
- Running a package manager or build tool to generate a dependency information file which is then parsed.
Obtaining dependency information by parsing lockfiles
The following package managers use lockfiles that GitLab analyzers are capable of parsing directly:
Package Manager | Supported File Format Versions | Tested Versions |
---|---|---|
Bundler | N/A | 1.17.3, 2.1.4 |
Composer | N/A | 1.x |
Conan | 0.4 | 1.x |
Go | N/A | 1.x |
NuGet | v1 | 4.9 |
npm | v1, v2 | 6.x, 7.x |
yarn | v1 | 1.x |
Obtaining dependency information by running a package manager to generate a parsable file
To support the following package managers, the GitLab analyzers proceed in two steps:
- Execute the package manager or a specific task, to export the dependency information.
- Parse the exported dependency information.
Package Manager | Preinstalled Versions | Tested Versions |
---|---|---|
Bundler | 2.1.41 | 1.17.3, 2.1.4 |
sbt | 1.3.8 | 1.0.4, 1.1.4, 1.1.6, 1.2.8, 1.3.12, 1.4.6 |
Maven | 3.6.3 | 3.6.3 |
Gradle | 6.7.1 | 5.6.4, 6.5, 6.7-rc-1, 6.9, 7.0-rc-2 |
setuptools | 50.3.2 | 57.5.0 |
pip | 20.2.4 | 20.x |
Pipenv | 2018.11.26 | 2018.11.262, 2018.11.26 |
-
The installed version of
Bundler
is only used for the bundler-audit analyzer, and is not used for gemnasium -
This test confirms that if a
Pipfile.lock
file is found, it will be used by Gemnasium to scan the exact package versions listed in this file.
How analyzers are triggered
GitLab relies on rules:exists
to start the relevant analyzers for the languages detected by the presence of the
Supported files
in the repository as shown in the table above.
The current detection logic limits the maximum search depth to two levels. For example, the gemnasium-dependency_scanning
job is enabled if
a repository contains either a Gemfile.lock
, api/Gemfile.lock
, or api/client/Gemfile.lock
, but not if the only supported dependency file is api/v1/client/Gemfile.lock
.
How multiple files are processed
NOTE: If you've run into problems while scanning multiple files, please contribute a comment to this issue.
Ruby
The following analyzers are executed, each of which have different behavior when processing multiple files:
-
Supports multiple lockfiles.
-
Does not support multiple lockfiles. When multiple lockfiles exist,
bundler-audit
analyzes the first lockfile discovered while traversing the directory tree in alphabetical order.
We execute both analyzers because they use different sources of vulnerability data. The result is more comprehensive analysis than if only one was executed.
Python
We only execute one installation in the directory where a requirements file has been detected, such as requirements.txt
or any
variation of this file (for example, requirements.pip
or requires.txt
).
Java and Scala
We only execute one build in the directory where a build file has been detected, such as build.sbt
or build.gradle
.
Please note, we support the following types of Java project structures:
JavaScript
The following analyzers are executed, each of which have different behavior when processing multiple files:
-
Supports multiple lockfiles
-
Does not support multiple lockfiles. When multiple lockfiles exist,
Retire.js
analyzes the first lockfile discovered while traversing the directory tree in alphabetical order.
We execute both analyzers because they use different sources of vulnerability data. The result is more comprehensive analysis than if only one was executed.
PHP, Go, C, C++, .NET, C#
The analyzer for these languages supports multiple lockfiles.
Support for additional languages
Support for additional languages, dependency managers, and dependency files are tracked in the following issues:
Package Managers | Languages | Supported files | Scan tools | Issue |
---|---|---|---|---|
Poetry | Python | poetry.lock |
Gemnasium | GitLab#7006 |
For workarounds, see the Troubleshooting section.
Contribute your scanner
The Security Scanner Integration documentation explains how to integrate other security scanners into GitLab.
Configuration
To enable dependency scanning for GitLab 11.9 and later, you must
include the
Dependency-Scanning.gitlab-ci.yml
template
that is provided as a part of your GitLab installation.
For GitLab versions earlier than 11.9, you can copy and use the job as defined
that template.
Add the following to your .gitlab-ci.yml
file:
include:
- template: Security/Dependency-Scanning.gitlab-ci.yml
The included template creates dependency scanning jobs in your CI/CD pipeline and scans your project's source code for possible vulnerabilities. The results are saved as a dependency scanning report artifact that you can later download and analyze. Due to implementation limitations, we always take the latest dependency scanning artifact available.
Enable Dependency Scanning via an automatic merge request
- Introduced in GitLab 14.1 with a flag named
sec_dependency_scanning_ui_enable
. Enabled by default.- Enabled on self-managed in GitLab 14.1.
- Feature flag sec_dependency_scanning_ui_enable removed in GitLab 14.2.
To enable Dependency Scanning in a project, you can create a merge request from the Security Configuration page.
- In the project where you want to enable Dependency Scanning, navigate to Security & Compliance > Configuration.
- In the Dependency Scanning row, select Configure with a merge request.
This automatically creates a merge request with the changes necessary to enable Dependency Scanning that you can review and merge to complete the configuration.
Customizing the dependency scanning settings
The dependency scanning settings can be changed through CI/CD variables by using the
variables
parameter in .gitlab-ci.yml
.
For example:
include:
- template: Security/Dependency-Scanning.gitlab-ci.yml
variables:
SECURE_LOG_LEVEL: error
Because template is evaluated before the pipeline configuration, the last mention of the variable takes precedence.
Overriding dependency scanning jobs
WARNING:
Beginning in GitLab 13.0, the use of only
and except
is no longer supported. When overriding the template, you must use rules
instead.
To override a job definition (for example, to change properties like variables
or dependencies
),
declare a new job with the same name as the one to override. Place this new job after the template
inclusion and specify any additional keys under it. For example, this disables DS_REMEDIATE
for
the gemnasium
analyzer:
include:
- template: Security/Dependency-Scanning.gitlab-ci.yml
gemnasium-dependency_scanning:
variables:
DS_REMEDIATE: "false"
To override the dependencies: []
attribute, add an override job as above, targeting this attribute:
include:
- template: Security/Dependency-Scanning.gitlab-ci.yml
gemnasium-dependency_scanning:
dependencies: ["build"]
Available CI/CD variables
Dependency scanning can be configured using environment variables.
Configuring dependency scanning
The following variables allow configuration of global dependency scanning settings.
CI/CD variables | Description |
---|---|
ADDITIONAL_CA_CERT_BUNDLE |
Bundle of CA certs to trust. The bundle of certificates provided here is also used by other tools during the scanning process, such as git , yarn , or npm . See Using a custom SSL CA certificate authority for more details. |
DS_EXCLUDED_ANALYZERS |
Specify the analyzers (by name) to exclude from Dependency Scanning. For more information, see Dependency Scanning Analyzers. |
DS_DEFAULT_ANALYZERS |
(DEPRECATED - use DS_EXCLUDED_ANALYZERS instead) Override the names of the official default images. For more information, see Dependency Scanning Analyzers. |
DS_EXCLUDED_PATHS |
Exclude files and directories from the scan based on the paths. A comma-separated list of patterns. Patterns can be globs, or file or folder paths (for example, doc,spec ). Parent directories also match patterns. Default: "spec, test, tests, tmp" . |
SECURE_ANALYZERS_PREFIX |
Override the name of the Docker registry providing the official default images (proxy). Read more about customizing analyzers. |
SECURE_LOG_LEVEL |
Set the minimum logging level. Messages of this logging level or higher are output. From highest to lowest severity, the logging levels are: fatal , error , warn , info , debug . Introduced in GitLab 13.1. Default: info . |
Configuring specific analyzers used by dependency scanning
The following variables are used for configuring specific analyzers (used for a specific language/framework).
CI/CD variable | Analyzer | Default | Description |
---|---|---|---|
BUNDLER_AUDIT_UPDATE_DISABLED |
bundler-audit |
"false" |
Disable automatic updates for the bundler-audit analyzer. Use if you're running dependency scanning in an offline, air-gapped environment. |
BUNDLER_AUDIT_ADVISORY_DB_URL |
bundler-audit |
https://github.com/rubysec/ruby-advisory-db |
URL of the advisory database used by bundler-audit. |
BUNDLER_AUDIT_ADVISORY_DB_REF_NAME |
bundler-audit |
master |
Git ref for the advisory database specified by BUNDLER_AUDIT_ADVISORY_DB_URL . |
GEMNASIUM_DB_LOCAL_PATH |
gemnasium |
/gemnasium-db |
Path to local Gemnasium database. |
GEMNASIUM_DB_UPDATE_DISABLED |
gemnasium |
"false" |
Disable automatic updates for the gemnasium-db advisory database (For usage see: examples) |
GEMNASIUM_DB_REMOTE_URL |
gemnasium |
https://gitlab.com/gitlab-org/security-products/gemnasium-db.git |
Repository URL for fetching the Gemnasium database. |
GEMNASIUM_DB_REF_NAME |
gemnasium |
master |
Branch name for remote repository database. GEMNASIUM_DB_REMOTE_URL is required. |
DS_REMEDIATE |
gemnasium |
"true" |
Enable automatic remediation of vulnerable dependencies. |
DS_JAVA_VERSION |
gemnasium-maven |
11 |
Version of Java. Available versions: 8 , 11 , 13 , 14 , 15 , 16 . |
MAVEN_CLI_OPTS |
gemnasium-maven |
"-DskipTests --batch-mode" |
List of command line arguments that are passed to maven by the analyzer. See an example for using private repositories. |
GRADLE_CLI_OPTS |
gemnasium-maven |
List of command line arguments that are passed to gradle by the analyzer. |
|
SBT_CLI_OPTS |
gemnasium-maven |
List of command-line arguments that the analyzer passes to sbt . |
|
PIP_INDEX_URL |
gemnasium-python |
https://pypi.org/simple |
Base URL of Python Package Index. |
PIP_EXTRA_INDEX_URL |
gemnasium-python |
Array of extra URLs of package indexes to use in addition to PIP_INDEX_URL . Comma-separated. Warning: Please read the following security consideration when using this environment variable. |
|
PIP_REQUIREMENTS_FILE |
gemnasium-python |
Pip requirements file to be scanned. | |
DS_PIP_VERSION |
gemnasium-python |
Force the install of a specific pip version (example: "19.3" ), otherwise the pip installed in the Docker image is used. (Introduced in GitLab 12.7) |
|
DS_PIP_DEPENDENCY_PATH |
gemnasium-python |
Path to load Python pip dependencies from. (Introduced in GitLab 12.2) | |
DS_PYTHON_VERSION |
retire.js |
Version of Python. If set to 2, dependencies are installed using Python 2.7 instead of Python 3.6. (Introduced in GitLab 12.1, removed in GitLab 13.7). | |
RETIREJS_JS_ADVISORY_DB |
retire.js |
https://raw.githubusercontent.com/RetireJS/retire.js/master/repository/jsrepository.json |
Path or URL to retire.js JS vulnerability data file. Note that if the URL hosting the data file uses a custom SSL certificate, for example in an offline installation, you can pass the certificate in the ADDITIONAL_CA_CERT_BUNDLE variable. |
RETIREJS_NODE_ADVISORY_DB |
retire.js |
https://raw.githubusercontent.com/RetireJS/retire.js/master/repository/npmrepository.json |
Path or URL to retire.js node vulnerability data file. Note that if the URL hosting the data file uses a custom SSL certificate, for example in an offline installation, you can pass the certificate in the ADDITIONAL_CA_CERT_BUNDLE variable. |
RETIREJS_ADVISORY_DB_INSECURE |
retire.js |
false |
Enable fetching remote JS and Node vulnerability data files (defined by the RETIREJS_JS_ADVISORY_DB and RETIREJS_NODE_ADVISORY_DB variables) from hosts using an insecure or self-signed SSL (TLS) certificate. |
Using a custom SSL CA certificate authority
You can use the ADDITIONAL_CA_CERT_BUNDLE
CI/CD variable to configure a custom SSL CA certificate authority. The ADDITIONAL_CA_CERT_BUNDLE
value should contain the text representation of the X.509 PEM public-key certificate. For example, to configure this value in the .gitlab-ci.yml
file, use the following:
variables:
ADDITIONAL_CA_CERT_BUNDLE: |
-----BEGIN CERTIFICATE-----
MIIGqTCCBJGgAwIBAgIQI7AVxxVwg2kch4d56XNdDjANBgkqhkiG9w0BAQsFADCB
...
jWgmPqF3vUbZE0EyScetPJquRFRKIesyJuBFMAs=
-----END CERTIFICATE-----
The ADDITIONAL_CA_CERT_BUNDLE
value can also be configured as a custom variable in the UI, either as a file
, which requires the path to the certificate, or as a variable, which requires the text representation of the certificate.
Using private Maven repositories
If your private Maven repository requires login credentials,
you can use the MAVEN_CLI_OPTS
CI/CD variable.
Read more on how to use private Maven repositories.
Interacting with the vulnerabilities
Once a vulnerability is found, you can interact with it. Read more on how to address the vulnerabilities.
Solutions for vulnerabilities
Some vulnerabilities can be fixed by applying the solution that GitLab automatically generates. Read more about the solutions for vulnerabilities.
Security Dashboard
The Security Dashboard is a good place to get an overview of all the security vulnerabilities in your groups, projects and pipelines. Read more about the Security Dashboard.
Vulnerabilities database update
For more information about the vulnerabilities database update, see the maintenance table.
Dependency List
An additional benefit of dependency scanning is the ability to view your project's dependencies and their known vulnerabilities. Read more about the Dependency List.
Reports JSON format
The dependency scanning tool emits a JSON report file. For more information, see the schema for this report.
Here's an example dependency scanning report:
{
"version": "2.0",
"vulnerabilities": [
{
"id": "51e83874-0ff6-4677-a4c5-249060554eae",
"category": "dependency_scanning",
"name": "Regular Expression Denial of Service",
"message": "Regular Expression Denial of Service in debug",
"description": "The debug module is vulnerable to regular expression denial of service when untrusted user input is passed into the `o` formatter. It takes around 50k characters to block for 2 seconds making this a low severity issue.",
"severity": "Unknown",
"solution": "Upgrade to latest versions.",
"scanner": {
"id": "gemnasium",
"name": "Gemnasium"
},
"location": {
"file": "yarn.lock",
"dependency": {
"package": {
"name": "debug"
},
"version": "1.0.5"
}
},
"identifiers": [
{
"type": "gemnasium",
"name": "Gemnasium-37283ed4-0380-40d7-ada7-2d994afcc62a",
"value": "37283ed4-0380-40d7-ada7-2d994afcc62a",
"url": "https://deps.sec.gitlab.com/packages/npm/debug/versions/1.0.5/advisories"
}
],
"links": [
{
"url": "https://nodesecurity.io/advisories/534"
},
{
"url": "https://github.com/visionmedia/debug/issues/501"
},
{
"url": "https://github.com/visionmedia/debug/pull/504"
}
]
},
{
"id": "5d681b13-e8fa-4668-957e-8d88f932ddc7",
"category": "dependency_scanning",
"name": "Authentication bypass via incorrect DOM traversal and canonicalization",
"message": "Authentication bypass via incorrect DOM traversal and canonicalization in saml2-js",
"description": "Some XML DOM traversal and canonicalization APIs may be inconsistent in handling of comments within XML nodes. Incorrect use of these APIs by some SAML libraries results in incorrect parsing of the inner text of XML nodes such that any inner text after the comment is lost prior to cryptographically signing the SAML message. Text after the comment, therefore, has no impact on the signature on the SAML message.\r\n\r\nA remote attacker can modify SAML content for a SAML service provider without invalidating the cryptographic signature, which may allow attackers to bypass primary authentication for the affected SAML service provider.",
"severity": "Unknown",
"solution": "Upgrade to fixed version.\r\n",
"scanner": {
"id": "gemnasium",
"name": "Gemnasium"
},
"location": {
"file": "yarn.lock",
"dependency": {
"package": {
"name": "saml2-js"
},
"version": "1.5.0"
}
},
"identifiers": [
{
"type": "gemnasium",
"name": "Gemnasium-9952e574-7b5b-46fa-a270-aeb694198a98",
"value": "9952e574-7b5b-46fa-a270-aeb694198a98",
"url": "https://deps.sec.gitlab.com/packages/npm/saml2-js/versions/1.5.0/advisories"
},
{
"type": "cve",
"name": "CVE-2017-11429",
"value": "CVE-2017-11429",
"url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11429"
}
],
"links": [
{
"url": "https://github.com/Clever/saml2/commit/3546cb61fd541f219abda364c5b919633609ef3d#diff-af730f9f738de1c9ad87596df3f6de84R279"
},
{
"url": "https://github.com/Clever/saml2/issues/127"
},
{
"url": "https://www.kb.cert.org/vuls/id/475445"
}
]
}
],
"remediations": [
{
"fixes": [
{
"id": "5d681b13-e8fa-4668-957e-8d88f932ddc7",
}
],
"summary": "Upgrade saml2-js",
"diff": "ZGlmZiAtLWdpdCBhL...OR0d1ZUc2THh3UT09Cg==" // some content is omitted for brevity
}
]
}
Versioning and release process
Please check the Release Process documentation.
Contributing to the vulnerability database
You can search the gemnasium-db
project
to find a vulnerability in the Gemnasium database.
You can also submit new vulnerabilities.
Running dependency scanning in an offline environment
For self-managed GitLab instances in an environment with limited, restricted, or intermittent access to external resources through the internet, some adjustments are required for dependency scanning jobs to run successfully. For more information, see Offline environments.
Requirements for offline dependency scanning
Here are the requirements for using dependency scanning in an offline environment:
-
GitLab Runner with the
docker
orkubernetes
executor. -
Docker Container Registry with locally available copies of dependency scanning analyzer images.
-
If you have a limited access environment you need to allow access, such as using a proxy, to the advisory database:
https://gitlab.com/gitlab-org/security-products/gemnasium-db.git
. If you are unable to permit access tohttps://gitlab.com/gitlab-org/security-products/gemnasium-db.git
you must host an offline copy of thisgit
repository and set theGEMNASIUM_DB_REMOTE_URL
CI/CD variable to the URL of this repository. For more information on configuration variables, see Dependency Scanning.This advisory database is constantly being updated, so you must periodically sync your local copy with GitLab.
-
Only if scanning Ruby projects: Host an offline Git copy of the advisory database.
-
Only if scanning npm/yarn projects: Host an offline copy of the
retire.js
node andjs
advisory databases.
Note that GitLab Runner has a default pull policy
of always
,
meaning the runner tries to pull Docker images from the GitLab container registry even if a local
copy is available. The GitLab Runner pull_policy
can be set to if-not-present
in an offline environment if you prefer using only locally available Docker images. However, we
recommend keeping the pull policy setting to always
if not in an offline environment, as this
enables the use of updated scanners in your CI/CD pipelines.
Make GitLab dependency scanning analyzer images available inside your Docker registry
For dependency scanning with all supported languages and frameworks,
import the following default dependency scanning analyzer images from registry.gitlab.com
into
your local Docker container registry:
registry.gitlab.com/gitlab-org/security-products/analyzers/gemnasium:2
registry.gitlab.com/gitlab-org/security-products/analyzers/gemnasium-maven:2
registry.gitlab.com/gitlab-org/security-products/analyzers/gemnasium-python:2
registry.gitlab.com/gitlab-org/security-products/analyzers/retire.js:2
registry.gitlab.com/gitlab-org/security-products/analyzers/bundler-audit:2
The process for importing Docker images into a local offline Docker registry depends on your network security policy. Please consult your IT staff to find an accepted and approved process by which external resources can be imported or temporarily accessed. These scanners are periodically updated with new definitions, and you may be able to make occasional updates on your own.
For details on saving and transporting Docker images as a file, see Docker's documentation on
docker save
, docker load
,
docker export
, and docker import
.
Support for Custom Certificate Authorities
Support for custom certificate authorities was introduced in the following versions.
Analyzer | Version |
---|---|
gemnasium |
v2.8.0 |
gemnasium-maven |
v2.9.0 |
gemnasium-python |
v2.7.0 |
retire.js |
v2.4.0 |
bundler-audit |
v2.4.0 |
Set dependency scanning CI/CD job variables to use local dependency scanning analyzers
Add the following configuration to your .gitlab-ci.yml
file. You must change the value of
SECURE_ANALYZERS_PREFIX
to refer to your local Docker container registry. You must also change the
value of GEMNASIUM_DB_REMOTE_URL
to the location of your offline Git copy of the
gemnasium-db
advisory database:
include:
- template: Security/Dependency-Scanning.gitlab-ci.yml
variables:
SECURE_ANALYZERS_PREFIX: "docker-registry.example.com/analyzers"
GEMNASIUM_DB_REMOTE_URL: "gitlab.example.com/gemnasium-db.git"
See explanations of the variables above in the configuration section.
Specific settings for languages and package managers
See the following sections for configuring specific languages and package managers.
JavaScript (npm and yarn) projects
Add the following to the variables section of .gitlab-ci.yml
:
RETIREJS_JS_ADVISORY_DB: "example.com/jsrepository.json"
RETIREJS_NODE_ADVISORY_DB: "example.com/npmrepository.json"
Ruby (gem) projects
Add the following to the variables section of .gitlab-ci.yml
:
BUNDLER_AUDIT_ADVISORY_DB_REF_NAME: "master"
BUNDLER_AUDIT_ADVISORY_DB_URL: "gitlab.example.com/ruby-advisory-db.git"
Python (setup tools)
When using self-signed certificates for your private PyPi repository, no extra job configuration (aside
from the template .gitlab-ci.yml
above) is needed. However, you must update your setup.py
to
ensure that it can reach your private repository. Here is an example configuration:
-
Update
setup.py
to create adependency_links
attribute pointing at your private repository for each dependency in theinstall_requires
list:install_requires=['pyparsing>=2.0.3'], dependency_links=['https://pypi.example.com/simple/pyparsing'],
-
Fetch the certificate from your repository URL and add it to the project:
echo -n | openssl s_client -connect pypi.example.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > internal.crt
-
Point
setup.py
at the newly downloaded certificate:import setuptools.ssl_support setuptools.ssl_support.cert_paths = ['internal.crt']
Hosting a copy of the gemnasium_db advisory database
The gemnasium_db
Git repository is
used by gemnasium
, gemnasium-maven
, and gemnasium-python
as the source of vulnerability data.
This repository updates at scan time to fetch the latest advisories. However, due to a restricted
networking environment, running this update is sometimes not possible. In this case, a user can do
one of the following:
Host a copy of the advisory database
If gemnasium-db is not reachable
from within the environment, the user can host their own Git copy. Then the analyzer can be
instructed to update the database from the user's copy by using GEMNASIUM_DB_REMOTE_URL
:
variables:
GEMNASIUM_DB_REMOTE_URL: https://users-own-copy.example.com/gemnasium-db/.git
...
Use a local clone
If a hosted copy is not possible, then the user can clone gemnasium-db
or create an archive before the scan and point the analyzer to the directory (using:
GEMNASIUM_DB_LOCAL_PATH
). Turn off the analyzer's self-update mechanism (using:
GEMNASIUM_DB_UPDATE_DISABLED
). In this example, the database directory is created in the
before_script
, before the gemnasium
analyzer's scan job:
...
gemnasium-dependency_scanning:
variables:
GEMNASIUM_DB_LOCAL_PATH: ./gemnasium-db-local
GEMNASIUM_DB_UPDATE_DISABLED: "true"
before_script:
- mkdir $GEMNASIUM_DB_LOCAL_PATH
- tar -xzf gemnasium_db.tar.gz -C $GEMNASIUM_DB_LOCAL_PATH
Warnings
Python projects
Extra care needs to be taken when using the PIP_EXTRA_INDEX_URL
environment variable due to a possible exploit documented by CVE-2018-20225:
An issue was discovered in pip (all versions) because it installs the version with the highest version number, even if the user had intended to obtain a private package from a private index. This only affects use of the
PIP_EXTRA_INDEX_URL
option, and exploitation requires that the package does not already exist in the public index (and thus the attacker can put the package there with an arbitrary version number).
Limitations
Referencing local dependencies using a path in JavaScript projects
The Retire.js analyzer
doesn't support dependency references made with local paths
in the package.json
of JavaScript projects. The dependency scan outputs the following error for
such references:
ERROR: Could not find dependencies: <dependency-name>. You may need to run npm install
As a workaround, add the retire.js
analyzer to
DS_EXCLUDED_ANALYZERS
.
Troubleshooting
Working around missing support for certain languages or package managers
As noted in the "Supported languages" section some dependency definition files are not yet supported. However, Dependency Scanning can be achieved if the language, a package manager, or a third-party tool can convert the definition file into a supported format.
Generally, the approach is the following:
- Define a dedicated converter job in your
.gitlab-ci.yml
file. Use a suitable Docker image, script, or both to facilitate the conversion. - Let that job upload the converted, supported file as an artifact.
- Add
dependencies: [<your-converter-job>]
to yourdependency_scanning
job to make use of the converted definitions files.
For example, the unsupported poetry.lock
file can be
converted
to the supported requirements.txt
as follows.
include:
- template: Security/Dependency-Scanning.gitlab-ci.yml
stages:
- test
variables:
PIP_REQUIREMENTS_FILE: "requirements-converted.txt"
gemnasium-python-dependency_scanning:
# Work around https://gitlab.com/gitlab-org/gitlab/-/issues/7006
before_script:
- pip install poetry # Or via another method: https://python-poetry.org/docs/#installation
- poetry export --output="$PIP_REQUIREMENTS_FILE"
- rm poetry.lock pyproject.toml
Error response from daemon: error processing tar file: docker-tar: relocation error
This error occurs when the Docker version that runs the dependency scanning job is 19.03.0
.
Consider updating to Docker 19.03.1
or greater. Older versions are not
affected. Read more in
this issue.
Getting warning message gl-dependency-scanning-report.json: no matching files
For information on this, see the general Application Security troubleshooting section.
Limitation when using rules:exists
The dependency scanning CI template
uses the rules:exists
syntax. This directive is limited to 10000 checks and always returns true
after reaching this
number. Because of this, and depending on the number of files in your repository, a dependency
scanning job might be triggered even if the scanner doesn't support your project.
Issues building projects with npm or yarn packages relying on Python 2
Python 2 was removed from the retire.js
analyzer in GitLab 13.7 (analyzer version 2.10.1). Projects using packages
with a dependency on this version of Python should use retire.js
version 2.10.0 or lower (for example, registry.gitlab.com/gitlab-org/security-products/analyzers/retire.js:2.10.0
).
Error: dependency_scanning is used for configuration only, and its script should not be executed
For information on this, see the GitLab Secure troubleshooting section.
Import multiple certificates for Java-based projects
The gemnasium-maven
analyzer reads the contents of the ADDITIONAL_CA_CERT_BUNDLE
variable using keytool
, which imports either a single certificate or a certificate chain. Multiple unrelated certificates are ignored and only the first one is imported by keytool
.
To add multiple unrelated certificates to the analyzer, you can declare a before_script
such as this in the definition of the gemnasium-maven-dependency_scanning
job:
gemnasium-maven-dependency_scanning:
before_script:
- . $HOME/.bashrc # make the java tools available to the script
- OIFS="$IFS"; IFS=""; echo $ADDITIONAL_CA_CERT_BUNDLE > multi.pem; IFS="$OIFS" # write ADDITIONAL_CA_CERT_BUNDLE variable to a PEM file
- csplit -z --digits=2 --prefix=cert multi.pem "/-----END CERTIFICATE-----/+1" "{*}" # split the file into individual certificates
- for i in `ls cert*`; do keytool -v -importcert -alias "custom-cert-$i" -file $i -trustcacerts -noprompt -storepass changeit -keystore /opt/asdf/installs/java/adoptopenjdk-11.0.7+10.1/lib/security/cacerts 1>/dev/null 2>&1 || true; done # import each certificate using keytool (note the keystore location is related to the Java version being used and should be changed accordingly for other versions)
- unset ADDITIONAL_CA_CERT_BUNDLE # unset the variable so that the analyzer doesn't duplicate the import
Dependency Scanning job fails with message strconv.ParseUint: parsing "0.0": invalid syntax
Invoking Docker-in-Docker is the likely cause of this error. Docker-in-Docker is:
- Disabled by default in GitLab 13.0 and later.
- Unsupported from GitLab 13.4 and later.
To fix this error, disable Docker-in-Docker for dependency scanning. Individual
<analyzer-name>-dependency_scanning
jobs are created for each analyzer that runs in your CI/CD
pipeline.
include:
- template: Dependency-Scanning.gitlab-ci.yml
variables:
DS_DISABLE_DIND: "true"
Message <file> does not exist in <commit SHA>
When the Location
of a dependency in a file is shown, the path in the link goes to a specific Git
SHA.
If the lock file that our dependency scanning tools reviewed was cached, however, selecting that
link redirects you to the repository root, with the message:
<file> does not exist in <commit SHA>
.
The lock file is cached during the build phase and passed to the dependency scanning job before the
scan occurs. Because the cache is downloaded before the analyzer run occurs, the existence of a lock
file in the CI_BUILDS_DIR
directory triggers the dependency scanning job.
We recommend committing the lock files, which prevents this warning.
I no longer get the latest Docker image after setting DS_MAJOR_VERSION
or DS_ANALYZER_IMAGE
If you have manually set DS_MAJOR_VERSION
or DS_ANALYZER_IMAGE
for specific reasons,
and now must update your configuration to again get the latest patched versions of our
analyzers, edit your gitlab-ci.yml
file and either:
-
Set your
DS_MAJOR_VERSION
to match the latest version as seen in our current Dependency Scanning template. -
If you hardcoded the
DS_ANALYZER_IMAGE
variable directly, change it to match the latest line as found in our current Dependency Scanning template. The line number will vary depending on which scanning job you edited.For example, currently the
gemnasium-maven-dependency_scanning
job pulls the latestgemnasium-maven
Docker image becauseDS_ANALYZER_IMAGE
is set to"$SECURE_ANALYZERS_PREFIX/gemnasium-maven:$DS_MAJOR_VERSION"
.