debian-mirror-gitlab/doc/user/application_security/index.md

553 lines
26 KiB
Markdown
Raw Normal View History

2019-10-12 21:52:04 +05:30
---
2021-09-04 01:27:46 +05:30
stage: Secure
group: Static Analysis
2021-02-22 17:27:13 +05:30
info: 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
2019-10-12 21:52:04 +05:30
type: reference, howto
---
2021-09-04 01:27:46 +05:30
# Secure your application **(ULTIMATE)**
2019-07-31 22:56:46 +05:30
2021-06-08 01:23:25 +05:30
GitLab can check your application for security vulnerabilities including:
- Unauthorized access.
- Data leaks.
- Denial of service attacks.
Statistics and details on vulnerabilities are included in the merge request. Providing
actionable information _before_ changes are merged enables you to be proactive.
GitLab also provides high-level statistics of vulnerabilities across projects and groups:
2021-04-17 20:07:23 +05:30
- The [Security Dashboard](security_dashboard/index.md) provides a
high-level view of vulnerabilities detected in your projects, pipeline, and groups.
- The [Threat Monitoring](threat_monitoring/index.md) page provides runtime security metrics
for application environments. With the information provided,
you can immediately begin risk analysis and remediation.
2019-10-12 21:52:04 +05:30
2020-04-22 19:07:51 +05:30
<i class="fa fa-youtube-play youtube" aria-hidden="true"></i>
2021-06-08 01:23:25 +05:30
For an overview of GitLab application security, see [Shifting Security Left](https://www.youtube.com/watch?v=XnYstHObqlA&t).
2020-05-24 23:13:21 +05:30
2019-07-31 22:56:46 +05:30
## Security scanning tools
2020-03-13 15:44:24 +05:30
GitLab uses the following tools to scan and report known vulnerabilities found in your project.
2019-07-31 22:56:46 +05:30
2019-09-30 21:07:59 +05:30
| Secure scanning tool | Description |
2019-07-31 22:56:46 +05:30
|:-----------------------------------------------------------------------------|:-----------------------------------------------------------------------|
2021-09-30 23:02:18 +05:30
| [Container Scanning](container_scanning/index.md) **(ULTIMATE)** | Scan Docker containers for known vulnerabilities. |
| [Dependency List](dependency_list/index.md) **(ULTIMATE)** | View your project's dependencies and their known vulnerabilities. |
| [Dependency Scanning](dependency_scanning/index.md) **(ULTIMATE)** | Analyze your dependencies for known vulnerabilities. |
| [Dynamic Application Security Testing (DAST)](dast/index.md) **(ULTIMATE)** | Analyze running web applications for known vulnerabilities. |
| [DAST API](dast_api/index.md) **(ULTIMATE)** | Analyze running web APIs for known vulnerabilities. |
| [API fuzzing](api_fuzzing/index.md) **(ULTIMATE)** | Find unknown bugs and vulnerabilities in web APIs with fuzzing. |
| [Secret Detection](secret_detection/index.md) | Analyze Git history for leaked secrets. |
| [Security Dashboard](security_dashboard/index.md) **(ULTIMATE)** | View vulnerabilities in all your projects and groups. |
| [Static Application Security Testing (SAST)](sast/index.md) | Analyze source code for known vulnerabilities. |
| [Coverage fuzzing](coverage_fuzzing/index.md) **(ULTIMATE)** | Find unknown bugs and vulnerabilities with coverage-guided fuzzing. |
| [Cluster Image Scanning](cluster_image_scanning/index.md) **(ULTIMATE)** | Scan Kubernetes clusters for known vulnerabilities. |
2019-09-30 21:07:59 +05:30
2021-06-08 01:23:25 +05:30
## Security scanning with Auto DevOps
2021-01-29 00:20:46 +05:30
2021-06-08 01:23:25 +05:30
To enable all GitLab Security scanning tools, with default settings, enable
[Auto DevOps](../../topics/autodevops/):
2020-06-23 00:09:42 +05:30
2020-11-24 15:15:51 +05:30
- [Auto SAST](../../topics/autodevops/stages.md#auto-sast)
- [Auto Secret Detection](../../topics/autodevops/stages.md#auto-secret-detection)
- [Auto DAST](../../topics/autodevops/stages.md#auto-dast)
- [Auto Dependency Scanning](../../topics/autodevops/stages.md#auto-dependency-scanning)
- [Auto License Compliance](../../topics/autodevops/stages.md#auto-license-compliance)
- [Auto Container Scanning](../../topics/autodevops/stages.md#auto-container-scanning)
2020-06-23 00:09:42 +05:30
While you cannot directly customize Auto DevOps, you can [include the Auto DevOps template in your project's `.gitlab-ci.yml` file](../../topics/autodevops/customize.md#customizing-gitlab-ciyml).
2021-06-08 01:23:25 +05:30
## Security scanning without Auto DevOps
2019-09-30 21:07:59 +05:30
2021-06-08 01:23:25 +05:30
To enable all GitLab security scanning tools, with the option of customizing settings, add the
GitLab CI/CD templates to your `.gitlab-ci.yml` file.
2020-03-13 15:44:24 +05:30
2021-06-08 01:23:25 +05:30
To enable Static Application Security Testing, Dependency Scanning, License Scanning, and Secret
Detection, add:
2021-01-29 00:20:46 +05:30
2021-06-08 01:23:25 +05:30
```yaml
include:
- template: Security/Dependency-Scanning.gitlab-ci.yml
- template: Security/License-Scanning.gitlab-ci.yml
- template: Security/SAST.gitlab-ci.yml
- template: Security/Secret-Detection.gitlab-ci.yml
```
2020-10-24 23:57:45 +05:30
2021-06-08 01:23:25 +05:30
To enable Dynamic Application Security Testing (DAST) scanning, add the following to your
`.gitlab-ci.yml`. Replace `https://staging.example.com` with a staging server's web address:
2020-07-28 23:09:34 +05:30
2021-06-08 01:23:25 +05:30
```yaml
include:
- template: Security/DAST.gitlab-ci.yml
2020-07-28 23:09:34 +05:30
2021-06-08 01:23:25 +05:30
variables:
DAST_WEBSITE: https://staging.example.com
```
2020-07-28 23:09:34 +05:30
2021-06-08 01:23:25 +05:30
For more details about each of the security scanning tools, see their respective
[documentation sections](#security-scanning-tools).
2020-07-28 23:09:34 +05:30
2021-06-08 01:23:25 +05:30
### Override the default registry base address
2020-07-28 23:09:34 +05:30
2021-06-08 01:23:25 +05:30
By default, GitLab security scanners use `registry.gitlab.com/gitlab-org/security-products/analyzers` as the
base address for Docker images. You can override this globally by setting the CI/CD variable
2021-09-04 01:27:46 +05:30
`SECURE_ANALYZERS_PREFIX` to another location. Note that this affects all scanners at once, except
the container-scanning analyzer which uses
`registry.gitlab.com/security-products/container-scanning` as its registry.
2020-07-28 23:09:34 +05:30
2021-06-08 01:23:25 +05:30
### Use security scanning tools with Pipelines for Merge Requests
2020-07-28 23:09:34 +05:30
2021-06-08 01:23:25 +05:30
By default, the application security jobs are configured to run for branch pipelines only.
2021-09-30 23:02:18 +05:30
To use them with [pipelines for merge requests](../../ci/pipelines/merge_request_pipelines.md),
2021-06-08 01:23:25 +05:30
you may need to override the default `rules:` configuration to add:
2019-07-31 22:56:46 +05:30
2021-06-08 01:23:25 +05:30
```yaml
rules:
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
```
2020-05-24 23:13:21 +05:30
2021-06-08 01:23:25 +05:30
## Default behavior of GitLab security scanning tools
2021-04-17 20:07:23 +05:30
2021-06-08 01:23:25 +05:30
### Secure jobs in your pipeline
2020-05-24 23:13:21 +05:30
2021-06-08 01:23:25 +05:30
If you add the security scanning jobs as described in [Security scanning with Auto DevOps](#security-scanning-with-auto-devops) or [Security scanning without Auto DevOps](#security-scanning-without-auto-devops) to your `.gitlab-ci.yml` each added [security scanning tool](#security-scanning-tools) behave as described below.
2019-07-31 22:56:46 +05:30
2021-10-27 15:23:28 +05:30
For each compatible analyzer, a job is created in the `test`, `dast` or `fuzz` stage of your pipeline and runs on the next new branch pipeline. Features such as the [Security Dashboard](security_dashboard/index.md), [Vulnerability Report](vulnerability_report/index.md), and [Dependency List](dependency_list/index.md) that rely on this scan data only show results from pipelines on the default branch. One tool might use many analyzers.
2019-09-04 21:01:54 +05:30
2021-06-08 01:23:25 +05:30
Our language and package manager specific jobs attempt to assess which analyzer(s) they should run for your project so that you can do less configuration.
2019-09-04 21:01:54 +05:30
2021-06-08 01:23:25 +05:30
If you want to override this to increase the pipeline speed you may choose which analyzers to exclude if you know they are not applicable (languages or package managers not contained in your project) by following variable customization directions for that specific tool.
2019-09-04 21:01:54 +05:30
2021-06-08 01:23:25 +05:30
### Secure job status
2019-09-04 21:01:54 +05:30
2021-06-08 01:23:25 +05:30
Jobs pass if they are able to complete a scan. A _pass_ result does NOT indicate if they did, or did not, identify findings. The only exception is coverage fuzzing, which fails if it identifies findings.
2020-04-08 14:13:33 +05:30
2021-06-08 01:23:25 +05:30
Jobs fail if they are unable to complete a scan. You can view the pipeline logs for more information.
2020-04-08 14:13:33 +05:30
2021-06-08 01:23:25 +05:30
All jobs are permitted to fail by default. This means that if they fail it do not fail the pipeline.
2020-04-08 14:13:33 +05:30
2021-06-08 01:23:25 +05:30
If you want to prevent vulnerabilities from being merged, you should do this by adding [Security Approvals in Merge Requests](#security-approvals-in-merge-requests) which prevents unknown, high or critical findings from being merged without an approval from a specific group of people that you choose.
2020-04-08 14:13:33 +05:30
2021-09-30 23:02:18 +05:30
We do not recommend changing the job [`allow_failure` setting](../../ci/yaml/index.md#allow_failure) as that fails the entire pipeline.
2021-01-29 00:20:46 +05:30
2021-06-08 01:23:25 +05:30
### JSON Artifact
2021-04-17 20:07:23 +05:30
2021-06-08 01:23:25 +05:30
The artifact generated by the secure analyzer contains all findings it discovers on the target branch, regardless of whether they were previously found, dismissed, or completely new (it puts in everything that it finds).
2021-04-17 20:07:23 +05:30
2021-06-08 01:23:25 +05:30
## View security scan information in merge requests **(FREE)**
2021-04-17 20:07:23 +05:30
2021-06-08 01:23:25 +05:30
> - [Introduced](https://gitlab.com/groups/gitlab-org/-/epics/4393) in GitLab Free 13.5.
> - Made [available in all tiers](https://gitlab.com/gitlab-org/gitlab/-/issues/273205) in 13.6.
> - Report download dropdown [added](https://gitlab.com/gitlab-org/gitlab/-/issues/273418) in 13.7.
> - [Feature flag removed](https://gitlab.com/gitlab-org/gitlab/-/issues/249550) in GitLab 13.9.
2021-04-17 20:07:23 +05:30
2021-06-08 01:23:25 +05:30
### All tiers
2021-04-17 20:07:23 +05:30
2021-06-08 01:23:25 +05:30
Merge requests which have run security scans let you know that the generated
reports are available to download. To download a report, click on the
**Download results** dropdown, and select the desired report.
2021-04-17 20:07:23 +05:30
2021-06-08 01:23:25 +05:30
![Security widget](img/security_widget_v13_7.png)
2019-07-31 22:56:46 +05:30
2021-06-08 01:23:25 +05:30
### Ultimate
2019-07-31 22:56:46 +05:30
2021-06-08 01:23:25 +05:30
A merge request contains a security widget which displays a summary of the NEW results. New results are determined by comparing the current findings against existing findings in the target (default) branch (if there are prior findings).
2019-12-04 20:38:33 +05:30
2021-06-08 01:23:25 +05:30
We recommended you run a scan of the `default` branch before enabling feature branch scans for your developers. Otherwise, there is no base for comparison and all feature branches display the full scan results in the merge request security widget.
2021-01-29 00:20:46 +05:30
2021-06-08 01:23:25 +05:30
The merge request security widget displays only a subset of the vulnerabilities in the generated JSON artifact because it contains both NEW and EXISTING findings.
2019-07-31 22:56:46 +05:30
2021-11-11 11:23:49 +05:30
From the merge request security widget, select **Expand** to unfold the widget, displaying any new and no longer detected (removed) findings by scan type. Select **View full report** to go directly to the **Security** tab in the latest branch pipeline.
![Security scanning results in a merge request](img/mr_security_scanning_results_v14_3.png)
2021-01-29 00:20:46 +05:30
2021-06-08 01:23:25 +05:30
## View security scan information in the pipeline Security tab
2021-01-29 00:20:46 +05:30
2021-06-08 01:23:25 +05:30
A pipeline's security tab lists all findings in the current branch. It includes new findings introduced by this branch and existing vulnerabilities that were already present when the branch was created. These results likely do not match the findings displayed in the Merge Request security widget as those do not include the existing vulnerabilities (with the exception of showing any existing vulnerabilities that are no longer detected in the feature branch).
2019-07-31 22:56:46 +05:30
2021-06-08 01:23:25 +05:30
For more details, see [security tab](security_dashboard/index.md#pipeline-security).
2019-07-31 22:56:46 +05:30
2021-06-08 01:23:25 +05:30
## View security scan information in the Security Dashboard
2019-07-31 22:56:46 +05:30
2021-06-08 01:23:25 +05:30
The Security Dashboard show vulnerabilities present in a project's default branch. Data is updated every 24 hours. Vulnerability count updates resulting from any feature branches introducing new vulnerabilities that are merged to default are included after the daily data refresh.
2019-07-31 22:56:46 +05:30
2021-06-08 01:23:25 +05:30
For more details, see [Security Dashboard](security_dashboard/index.md).
2019-07-31 22:56:46 +05:30
2021-06-08 01:23:25 +05:30
## View security scan information in the Vulnerability Report
2020-10-24 23:57:45 +05:30
2021-06-08 01:23:25 +05:30
The vulnerability report shows the results of the last completed pipeline on the default branch. It is updated on every pipeline completion. All detected vulnerabilities are shown as well as any previous ones that are no longer detected in the latest scan. Vulnerabilities that are no longer detected may have been remediated or otherwise removed and can be marked as `Resolved` after proper verification. Vulnerabilities that are no longer detected are denoted with an icon for filtering and review.
2021-04-29 21:17:54 +05:30
2021-06-08 01:23:25 +05:30
By default, the vulnerability report does not show vulnerabilities of `dismissed` or `resolved` status so you can focus on open vulnerabilities. You can change the Status filter to see these.
2020-10-24 23:57:45 +05:30
2021-06-08 01:23:25 +05:30
[Read more about the Vulnerability report](vulnerability_report/index.md).
2020-10-24 23:57:45 +05:30
2020-03-13 15:44:24 +05:30
## Security approvals in merge requests
2019-10-12 21:52:04 +05:30
2020-06-23 00:09:42 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/9928) in [GitLab Ultimate](https://about.gitlab.com/pricing/) 12.2.
2019-10-12 21:52:04 +05:30
2021-09-04 01:27:46 +05:30
You can implement merge request approvals to require approval by selected users or a group when a
merge request would introduce one of the following security issues:
2020-03-13 15:44:24 +05:30
- A security vulnerability
- A software license compliance violation
2019-10-12 21:52:04 +05:30
2021-09-04 01:27:46 +05:30
When the Vulnerability-Check merge request rule is enabled, additional merge request approval
is required when the latest security report in a merge request:
2020-05-24 23:13:21 +05:30
2021-10-27 15:23:28 +05:30
- Contains vulnerabilities that are not present in the
2021-09-04 01:27:46 +05:30
target branch. Note that approval is still required for dismissed vulnerabilities.
2021-10-27 15:23:28 +05:30
- Contains vulnerabilities with severity levels (for example, `high`, `critical`, or `unknown`)
matching the rule's severity levels.
- Contains a vulnerability count higher than the rule allows.
2021-09-04 01:27:46 +05:30
- Is not generated during pipeline execution.
2020-05-24 23:13:21 +05:30
2021-09-04 01:27:46 +05:30
An approval is optional when the security report:
2019-10-12 21:52:04 +05:30
2021-09-04 01:27:46 +05:30
- Contains no new vulnerabilities when compared to the target branch.
2021-10-27 15:23:28 +05:30
- Contains only vulnerabilities with severity levels (for example, `low`, `medium`) **NOT** matching
the rule's severity levels.
- Contains a vulnerability count equal to or less than what the rule allows.
2019-10-12 21:52:04 +05:30
2021-09-04 01:27:46 +05:30
When the License-Check merge request rule is enabled, additional approval is required if a merge
request contains a denied license. For more details, see [Enabling license approvals within a project](../compliance/license_compliance/index.md#enabling-license-approvals-within-a-project).
2020-11-24 15:15:51 +05:30
2021-09-04 01:27:46 +05:30
### Enable the Vulnerability-Check rule
2020-11-24 15:15:51 +05:30
2021-09-04 01:27:46 +05:30
Prerequisites:
2020-11-24 15:15:51 +05:30
2021-09-04 01:27:46 +05:30
- Maintainer or Owner [role](../permissions.md#project-members-permissions).
2020-11-24 15:15:51 +05:30
2021-09-04 01:27:46 +05:30
For this approval group, you must set the number of approvals required to greater than zero.
2020-11-24 15:15:51 +05:30
Follow these steps to enable `Vulnerability-Check`:
2020-06-23 00:09:42 +05:30
2021-11-11 11:23:49 +05:30
1. On the top bar, select **Menu > Projects** and find your project.
1. On the left sidebar, select **Settings > General**.
2021-09-04 01:27:46 +05:30
1. Expand **Merge request approvals**.
1. Select **Enable** or **Edit**.
2021-10-27 15:23:28 +05:30
1. Set the **Security scanners** that the rule applies to.
2021-09-04 01:27:46 +05:30
1. Select the **Target branch**.
2021-10-27 15:23:28 +05:30
1. Set the **Vulnerabilities allowed** to the number of vulnerabilities allowed before the rule is
triggered.
1. Set the **Severity levels** to the severity levels that the rule applies to.
1. Set the **Approvals required** to the number of approvals that the rule requires.
2021-09-04 01:27:46 +05:30
1. Select the users or groups to provide approval.
1. Select **Add approval rule**.
2019-10-12 21:52:04 +05:30
2020-03-13 15:44:24 +05:30
Once this group is added to your project, the approval rule is enabled for all merge requests.
Any code changes cause the approvals required to reset.
2019-10-12 21:52:04 +05:30
2021-10-27 15:23:28 +05:30
![Vulnerability Check Approver Rule](img/vulnerability-check_v14_2.png)
2020-04-08 14:13:33 +05:30
2021-03-11 19:13:27 +05:30
## Using private Maven repositories
2020-04-22 19:07:51 +05:30
If you have a private Apache Maven repository that requires login credentials,
2021-03-11 19:13:27 +05:30
you can use the `MAVEN_CLI_OPTS` CI/CD variable
2020-04-22 19:07:51 +05:30
to pass a username and password. You can set it under your project's settings
so that your credentials aren't exposed in `.gitlab-ci.yml`.
If the username is `myuser` and the password is `verysecret` then you would
2021-09-30 23:02:18 +05:30
[set the following variable](../../ci/variables/index.md#custom-cicd-variables)
2020-04-22 19:07:51 +05:30
under your project's settings:
2021-03-11 19:13:27 +05:30
| Type | Key | Value |
| -------- | ---------------- | ----- |
2020-04-22 19:07:51 +05:30
| Variable | `MAVEN_CLI_OPTS` | `--settings mysettings.xml -Drepository.password=verysecret -Drepository.user=myuser` |
```xml
<!-- mysettings.xml -->
<settings>
...
<servers>
<server>
<id>private_server</id>
<username>${private.username}</username>
<password>${private.password}</password>
</server>
</servers>
</settings>
```
2021-06-08 01:23:25 +05:30
## DAST On-Demand Scans
2021-11-11 11:23:49 +05:30
If you don't want scans running in your normal DevOps process you can use on-demand scans instead. For more details, see [on-demand scans](dast/index.md#on-demand-scans). This feature is only available for DAST. If you run an on-demand scan against the default branch, it is reported as a "successful pipeline" and these results are included in the security dashboard and vulnerability report.
2021-06-08 01:23:25 +05:30
## Security report validation
2021-09-04 01:27:46 +05:30
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/321918) in GitLab 13.11.
> - Schema validation message [added](https://gitlab.com/gitlab-org/gitlab/-/issues/321730) in GitLab 14.0.
2021-06-08 01:23:25 +05:30
2021-09-04 01:27:46 +05:30
You can optionally enable validation of the security report artifacts based on the
2021-06-08 01:23:25 +05:30
[report schemas](https://gitlab.com/gitlab-org/security-products/security-report-schemas/-/tree/master/dist).
If you enable validation, GitLab validates the report artifacts before ingesting the vulnerabilities.
2021-09-04 01:27:46 +05:30
This prevents ingestion of broken vulnerability data into the database.
In GitLab 14.0 and later, the pipeline's **Security** tab lists any report artifacts
that failed validation. Security report validation must first be enabled.
2021-06-08 01:23:25 +05:30
### Enable security report validation
To enable report artifacts validation, set the `VALIDATE_SCHEMA` environment variable to `"true"` for the jobs in the `.gitlab-ci.yml` file.
For example, the configuration below enables validation for only the `sast` job:
```yaml
include:
- template: Security/Dependency-Scanning.gitlab-ci.yml
- template: Security/License-Scanning.gitlab-ci.yml
- template: Security/SAST.gitlab-ci.yml
- template: Security/Secret-Detection.gitlab-ci.yml
stages:
- security-scan
dependency_scanning:
stage: security-scan
license_scanning:
stage: security-scan
sast:
stage: security-scan
variables:
VALIDATE_SCHEMA: "true"
.secret-analyzer:
stage: security-scan
```
## Interacting with findings and vulnerabilities
There are a variety of locations and ways to interact with the results of the security scanning tools:
- [Scan information in merge requests](#view-security-scan-information-in-merge-requests)
- [Project Security Dashboard](security_dashboard/#project-security-dashboard)
- [Security pipeline tab](security_dashboard/#pipeline-security)
- [Group Security Dashboard](security_dashboard/#group-security-dashboard)
- [Security Center](security_dashboard/#security-center)
- [Vulnerability Report](vulnerability_report/index.md)
- [Vulnerability Pages](vulnerabilities/index.md)
- [Dependency List](dependency_list/index.md)
For more details about which findings or vulnerabilities you can view in each of those locations, select the respective link. Each page details the ways in which you can interact with the findings and vulnerabilities. As an example, in most cases findings start out as _detected_ status. You have the option to:
- Change the status.
- Create an issue.
- Link it to an existing issue.
2021-09-04 01:27:46 +05:30
- [Resolve the vulnerability](vulnerabilities/index.md#resolve-a-vulnerability), if a solution is known.
2021-06-08 01:23:25 +05:30
2019-12-26 22:10:19 +05:30
## Troubleshooting
2019-10-12 21:52:04 +05:30
2021-11-11 11:23:49 +05:30
### Secure job failing with exit code 1
If a Secure job is failing and it's unclear why, add `SECURE_LOG_LEVEL: "debug"` as a global CI/CD variable for
more verbose output that is helpful for troubleshooting.
```yaml
variables:
SECURE_LOG_LEVEL: "debug"
```
2021-09-04 01:27:46 +05:30
### Outdated security reports
When a security report generated for a merge request becomes outdated, the merge request shows a warning
message in the security widget and prompts you to take an appropriate action.
This can happen in two scenarios:
- Your [source branch is behind the target branch](#source-branch-is-behind-the-target-branch).
- The [target branch security report is out of date](#target-branch-security-report-is-out-of-date).
#### Source branch is behind the target branch
This means the most recent common ancestor commit between the target branch and the source branch is
not the most recent commit on the target branch. This is by far the most common situation.
In this case you must rebase or merge to incorporate the changes from the target branch.
![Incorporate target branch changes](img/outdated_report_branch_v12_9.png)
#### Target branch security report is out of date
This can happen for many reasons, including failed jobs or new advisories. When the merge request shows that a
security report is out of date, you must run a new pipeline on the target branch.
You can do it quickly by following the hyperlink given to run a new pipeline.
![Run a new pipeline](img/outdated_report_pipeline_v12_9.png)
2019-12-26 22:10:19 +05:30
### Getting error message `sast job: stage parameter should be [some stage name here]`
2019-10-12 21:52:04 +05:30
2021-09-30 23:02:18 +05:30
When [including](../../ci/yaml/index.md#includetemplate) a `.gitlab-ci.yml` template
2021-09-04 01:27:46 +05:30
like [`SAST.gitlab-ci.yml`](https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Security/SAST.gitlab-ci.yml),
2020-03-13 15:44:24 +05:30
the following error may occur, depending on your GitLab CI/CD configuration:
2019-12-26 22:10:19 +05:30
2020-03-13 15:44:24 +05:30
```plaintext
2019-12-26 22:10:19 +05:30
Found errors in your .gitlab-ci.yml:
* sast job: stage parameter should be unit-tests
```
2020-03-13 15:44:24 +05:30
This error appears when the included job's stage (named `test`) isn't declared in `.gitlab-ci.yml`.
2019-12-26 22:10:19 +05:30
To fix this issue, you can either:
- Add a `test` stage in your `.gitlab-ci.yml`.
2021-03-11 19:13:27 +05:30
- Override the default stage of each security job. For example, to use a pre-defined stage name `unit-tests`:
2019-12-26 22:10:19 +05:30
```yaml
include:
2021-03-11 19:13:27 +05:30
- template: Security/Dependency-Scanning.gitlab-ci.yml
- template: Security/License-Scanning.gitlab-ci.yml
- template: Security/SAST.gitlab-ci.yml
- template: Security/Secret-Detection.gitlab-ci.yml
stages:
- unit-tests
dependency_scanning:
stage: unit-tests
2019-12-26 22:10:19 +05:30
2021-03-11 19:13:27 +05:30
license_scanning:
stage: unit-tests
sast:
stage: unit-tests
.secret-analyzer:
2019-12-26 22:10:19 +05:30
stage: unit-tests
```
2020-05-24 23:13:21 +05:30
[Learn more on overriding SAST jobs](sast/index.md#overriding-sast-jobs).
2020-03-13 15:44:24 +05:30
All the security scanning tools define their stage, so this error can occur with all of them.
2020-05-24 23:13:21 +05:30
2021-01-03 14:25:43 +05:30
### Getting warning messages `… report.json: no matching files`
This is often followed by the [error `No files to upload`](../../ci/pipelines/job_artifacts.md#error-message-no-files-to-upload),
and preceded by other errors or warnings that indicate why the JSON report wasn't generated. Please
check the entire job log for such messages. If you don't find these messages, retry the failed job
after setting `SECURE_LOG_LEVEL: "debug"` as a
2021-09-30 23:02:18 +05:30
[custom CI/CD variable](../../ci/variables/index.md#custom-cicd-variables).
2021-01-03 14:25:43 +05:30
This provides useful information to investigate further.
2020-05-24 23:13:21 +05:30
### Getting error message `sast job: config key may not be used with 'rules': only/except`
2021-09-30 23:02:18 +05:30
When [including](../../ci/yaml/index.md#includetemplate) a `.gitlab-ci.yml` template
2021-09-04 01:27:46 +05:30
like [`SAST.gitlab-ci.yml`](https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Security/SAST.gitlab-ci.yml),
2020-05-24 23:13:21 +05:30
the following error may occur, depending on your GitLab CI/CD configuration:
```plaintext
Found errors in your .gitlab-ci.yml:
jobs:sast config key may not be used with `rules`: only/except
```
This error appears when the included job's `rules` configuration has been [overridden](sast/index.md#overriding-sast-jobs)
2021-09-30 23:02:18 +05:30
with [the deprecated `only` or `except` syntax.](../../ci/yaml/index.md#only--except)
2020-05-24 23:13:21 +05:30
To fix this issue, you must either:
- [Transition your `only/except` syntax to `rules`](#transitioning-your-onlyexcept-syntax-to-rules).
- (Temporarily) [Pin your templates to the deprecated versions](#pin-your-templates-to-the-deprecated-versions)
[Learn more on overriding SAST jobs](sast/index.md#overriding-sast-jobs).
#### Transitioning your `only/except` syntax to `rules`
When overriding the template to control job execution, previous instances of
2021-09-30 23:02:18 +05:30
[`only` or `except`](../../ci/yaml/index.md#only--except) are no longer compatible
and must be transitioned to [the `rules` syntax](../../ci/yaml/index.md#rules).
2020-05-24 23:13:21 +05:30
If your override is aimed at limiting jobs to only run on `master`, the previous syntax
would look similar to:
```yaml
include:
2021-01-03 14:25:43 +05:30
- template: Security/SAST.gitlab-ci.yml
2020-05-24 23:13:21 +05:30
# Ensure that the scanning is only executed on master or merge requests
spotbugs-sast:
only:
refs:
- master
- merge_requests
```
To transition the above configuration to the new `rules` syntax, the override
would be written as follows:
```yaml
include:
2021-01-03 14:25:43 +05:30
- template: Security/SAST.gitlab-ci.yml
2020-05-24 23:13:21 +05:30
# Ensure that the scanning is only executed on master or merge requests
spotbugs-sast:
rules:
- if: $CI_COMMIT_BRANCH == "master"
- if: $CI_MERGE_REQUEST_ID
```
If your override is aimed at limiting jobs to only run on branches, not tags,
it would look similar to:
```yaml
include:
2021-01-03 14:25:43 +05:30
- template: Security/SAST.gitlab-ci.yml
2020-05-24 23:13:21 +05:30
# Ensure that the scanning is not executed on tags
spotbugs-sast:
except:
- tags
```
To transition to the new `rules` syntax, the override would be rewritten as:
```yaml
include:
2021-01-03 14:25:43 +05:30
- template: Security/SAST.gitlab-ci.yml
2020-05-24 23:13:21 +05:30
# Ensure that the scanning is not executed on tags
spotbugs-sast:
rules:
- if: $CI_COMMIT_TAG == null
```
2021-09-30 23:02:18 +05:30
[Learn more on the usage of `rules`](../../ci/yaml/index.md#rules).
2020-05-24 23:13:21 +05:30
#### Pin your templates to the deprecated versions
2021-09-30 23:02:18 +05:30
To ensure the latest support, we **strongly** recommend that you migrate to [`rules`](../../ci/yaml/index.md#rules).
2020-05-24 23:13:21 +05:30
If you're unable to immediately update your CI configuration, there are several workarounds that
involve pinning to the previous template versions, for example:
```yaml
include:
remote: 'https://gitlab.com/gitlab-org/gitlab/-/raw/12-10-stable-ee/lib/gitlab/ci/templates/Security/SAST.gitlab-ci.yml'
```
Additionally, we provide a dedicated project containing the versioned legacy templates.
This can be useful for offline setups or anyone wishing to use [Auto DevOps](../../topics/autodevops/index.md).
Instructions are available in the [legacy template project](https://gitlab.com/gitlab-org/auto-devops-v12-10).
2021-01-29 00:20:46 +05:30
#### Vulnerabilities are found, but the job succeeds. How can I have a pipeline fail instead?
This is the current default behavior, because the job's status indicates success or failure of the analyzer itself.
Analyzer results are displayed in the [job logs](../../ci/jobs/index.md#expand-and-collapse-job-log-sections),
2021-04-29 21:17:54 +05:30
[Merge Request widget](#view-security-scan-information-in-merge-requests)
2021-01-29 00:20:46 +05:30
or [Security Dashboard](security_dashboard/index.md).
2021-03-11 19:13:27 +05:30
### Error: job `is used for configuration only, and its script should not be executed`
2021-01-29 00:20:46 +05:30
2021-03-11 19:13:27 +05:30
[Changes made in GitLab 13.4](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/41260)
to the `Security/Dependency-Scanning.gitlab-ci.yml` and `Security/SAST.gitlab-ci.yml`
templates mean that if you enable the `sast` or `dependency_scanning` jobs by setting the `rules` attribute,
they will fail with the error `(job) is used for configuration only, and its script should not be executed`.
2021-01-29 00:20:46 +05:30
2021-03-11 19:13:27 +05:30
The `sast` or `dependency_scanning` stanzas can be used to make changes to all SAST or Dependency Scanning,
such as changing `variables` or the `stage`, but they cannot be used to define shared `rules`.
2021-01-29 00:20:46 +05:30
2021-03-11 19:13:27 +05:30
There [is an issue open to improve extendability](https://gitlab.com/gitlab-org/gitlab/-/issues/218444).
Please upvote the issue to help with prioritization, and
[contributions are welcomed](https://about.gitlab.com/community/contribute/).