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

230 lines
12 KiB
Markdown
Raw Normal View History

2019-10-12 21:52:04 +05:30
---
type: reference, howto
---
2019-09-30 21:07:59 +05:30
# GitLab Secure **(ULTIMATE)**
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
GitLab can check your application for security vulnerabilities that may lead to unauthorized access,
data leaks, denial of services, and more. GitLab reports vulnerabilities in the merge request so you
can fix them before merging. The [Security Dashboard](security_dashboard/index.md) provides a
high-level view of vulnerabilities detected in your projects, pipeline, and groups. With the
information provided, you can immediately begin risk analysis and remediation.
2019-10-12 21:52:04 +05:30
For an overview of application security with GitLab, see
[Security Deep Dive](https://www.youtube.com/watch?v=k4vEJnGYy84).
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
|:-----------------------------------------------------------------------------|:-----------------------------------------------------------------------|
2020-03-13 15:44:24 +05:30
| [Compliance Dashboard](compliance_dashboard/index.md) **(ULTIMATE)** | View the most recent Merge Request activity in a group. |
2019-09-30 21:07:59 +05:30
| [Container Scanning](container_scanning/index.md) **(ULTIMATE)** | Scan Docker containers for known vulnerabilities. |
2019-10-12 21:52:04 +05:30
| [Dependency List](dependency_list/index.md) **(ULTIMATE)** | View your project's dependencies and their known vulnerabilities. |
2019-09-30 21:07:59 +05:30
| [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. |
2019-12-04 20:38:33 +05:30
| [License Compliance](license_compliance/index.md) **(ULTIMATE)** | Search your project's dependencies for their licenses. |
2019-09-30 21:07:59 +05:30
| [Security Dashboard](security_dashboard/index.md) **(ULTIMATE)** | View vulnerabilities in all your projects and groups. |
| [Static Application Security Testing (SAST)](sast/index.md) **(ULTIMATE)** | Analyze source code for known vulnerabilities. |
## Maintenance and update of the vulnerabilities database
2020-03-13 15:44:24 +05:30
The scanning tools and vulnerabilities database are updated regularly.
2019-09-30 21:07:59 +05:30
| Secure scanning tool | Vulnerabilities database updates |
|:-------------------------------------------------------------|-------------------------------------------|
2020-03-13 15:44:24 +05:30
| [Container Scanning](container_scanning/index.md) | Uses `clair`. The latest `clair-db` version is used for each job by running the [`latest` docker image tag](https://gitlab.com/gitlab-org/gitlab/blob/438a0a56dc0882f22bdd82e700554525f552d91b/lib/gitlab/ci/templates/Security/Container-Scanning.gitlab-ci.yml#L37). The `clair-db` database [is updated daily according to the author](https://github.com/arminc/clair-local-scan#clair-server-or-local). |
| [Dependency Scanning](dependency_scanning/index.md) | Relies on `bundler-audit` (for Rubygems), `retire.js` (for NPM packages), and `gemnasium` (GitLab's own tool for all libraries). Both `bundler-audit` and `retire.js` fetch their vulnerabilities data from GitHub repositories, so vulnerabilities added to `ruby-advisory-db` and `retire.js` are immediately available. The tools themselves are updated once per month if there's a new version. The [Gemnasium DB](https://gitlab.com/gitlab-org/security-products/gemnasium-db) is updated at least once a week. |
| [Dynamic Application Security Testing (DAST)](dast/index.md) | The scanning engine is updated on a periodic basis. See the [version of the underlying tool `zaproxy`](https://gitlab.com/gitlab-org/security-products/dast/blob/master/Dockerfile#L1). The scanning rules are downloaded at scan runtime. |
| [Static Application Security Testing (SAST)](sast/index.md) | Relies exclusively on [the tools GitLab wraps](sast/index.md#supported-languages-and-frameworks). The underlying analyzers are updated at least once per month if a relevant update is available. The vulnerabilities database is updated by the upstream tools. |
Currently, you do not have to update GitLab to benefit from the latest vulnerabilities definitions.
The security tools are released as Docker images. The vendored job definitions to enable them use
the `x-y-stable` image tags that get overridden each time a new release of the tools is pushed. The
Docker images are updated to match the previous GitLab releases, so users automatically get the
latest versions of the scanning tools without having to do anything. There are some known issues
with this approach, however, and there is a
[plan to resolve them](https://gitlab.com/gitlab-org/gitlab/issues/9725).
2019-07-31 22:56:46 +05:30
## Interacting with the vulnerabilities
2019-12-21 20:55:43 +05:30
> Introduced in [GitLab Ultimate](https://about.gitlab.com/pricing/) 10.8.
2019-07-31 22:56:46 +05:30
CAUTION: **Warning:**
This feature is currently [Alpha](https://about.gitlab.com/handbook/product/#alpha-beta-ga) and while you can start using it, it may receive important changes in the future.
Each security vulnerability in the merge request report or the
2020-03-13 15:44:24 +05:30
[Security Dashboard](security_dashboard/index.md) is actionable. Click an entry to view detailed
information with several options:
- [Dismiss vulnerability](#dismissing-a-vulnerability): Dismissing a vulnerability styles it in
strikethrough.
- [Create issue](#creating-an-issue-for-a-vulnerability): Create a new issue with the title and
description prepopulated with information from the vulnerability report. By default, such issues
are [confidential](../project/issues/confidential_issues.md).
2019-12-04 20:38:33 +05:30
- [Solution](#solutions-for-vulnerabilities-auto-remediation): For some vulnerabilities,
2019-07-31 22:56:46 +05:30
a solution is provided for how to fix the vulnerability.
![Interacting with security reports](img/interactive_reports.png)
### Dismissing a vulnerability
You can dismiss vulnerabilities by clicking the **Dismiss vulnerability** button.
This will dismiss the vulnerability and re-render it to reflect its dismissed state.
If you wish to undo this dismissal, you can click the **Undo dismiss** button.
2019-09-04 21:01:54 +05:30
#### Adding a dismissal reason
2019-12-21 20:55:43 +05:30
> Introduced in [GitLab Ultimate](https://about.gitlab.com/pricing/) 12.0.
2019-09-04 21:01:54 +05:30
When dismissing a vulnerability, it's often helpful to provide a reason for doing so.
2019-12-21 20:55:43 +05:30
If you press the comment button next to **Dismiss vulnerability** in the modal,
2020-03-13 15:44:24 +05:30
a text box appears for you to add a comment with your dismissal.
Once added, you can edit or delete it. This allows you to add and update
2019-12-21 20:55:43 +05:30
context for a vulnerability as you learn more over time.
2019-09-04 21:01:54 +05:30
2019-12-21 20:55:43 +05:30
![Dismissed vulnerability comment](img/dismissed_info_v12_3.png)
2019-09-04 21:01:54 +05:30
2019-07-31 22:56:46 +05:30
### Creating an issue for a vulnerability
You can create an issue for a vulnerability by selecting the **Create issue**
2020-03-13 15:44:24 +05:30
button from within the vulnerability modal, or by using the action buttons to the right of
a vulnerability row in the group security dashboard.
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
This creates a [confidential issue](../project/issues/confidential_issues.md) in the project the
vulnerability came from, and prepopulates it with some useful information taken from the vulnerability
report. Once the issue is created, you are redirected to it so you can edit, assign, or comment on
it.
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
Upon returning to the group security dashboard, the vulnerability now has an associated issue next
to the name.
2019-07-31 22:56:46 +05:30
![Linked issue in the group security dashboard](img/issue.png)
2019-12-04 20:38:33 +05:30
### Solutions for vulnerabilities (auto-remediation)
2019-07-31 22:56:46 +05:30
2019-12-21 20:55:43 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/issues/5656) in [GitLab Ultimate](https://about.gitlab.com/pricing/) 11.7.
2019-07-31 22:56:46 +05:30
Some vulnerabilities can be fixed by applying the solution that GitLab
2019-12-04 20:38:33 +05:30
automatically generates. The following scanners are supported:
- [Dependency Scanning](dependency_scanning/index.md):
2020-03-13 15:44:24 +05:30
Automatic Patch creation is only available for Node.js projects managed with
2019-12-04 20:38:33 +05:30
`yarn`.
2020-03-13 15:44:24 +05:30
- [Container Scanning](container_scanning/index.md)
2019-07-31 22:56:46 +05:30
#### Manually applying the suggested patch
Some vulnerabilities can be fixed by applying a patch that is automatically
generated by GitLab. To apply the fix:
2020-03-13 15:44:24 +05:30
1. Click the vulnerability.
2019-07-31 22:56:46 +05:30
1. Download and review the patch file `remediation.patch`.
2019-10-12 21:52:04 +05:30
1. Ensure your local project has the same commit checked out that was used to generate the patch.
1. Run `git apply remediation.patch`.
1. Verify and commit the changes to your branch.
2019-07-31 22:56:46 +05:30
![Apply patch for dependency scanning](img/vulnerability_solution.png)
#### Creating a merge request from a vulnerability
2019-12-21 20:55:43 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/issues/9224) in [GitLab Ultimate](https://about.gitlab.com/pricing/) 11.9.
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
In certain cases, GitLab allows you to create a merge request that automatically remediates the
vulnerability. Any vulnerability that has a
2019-12-04 20:38:33 +05:30
[solution](#solutions-for-vulnerabilities-auto-remediation) can have a merge
request created to automatically solve the issue.
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
If this action is available, the vulnerability modal contains a **Create merge request** button.
Click this button to create a merge request to apply the solution onto the source branch.
2019-07-31 22:56:46 +05:30
![Create merge request from vulnerability](img/create_issue_with_list_hover.png)
2019-10-12 21:52:04 +05:30
2020-03-13 15:44:24 +05:30
## Security approvals in merge requests
2019-10-12 21:52:04 +05:30
2019-12-21 20:55:43 +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
2020-03-13 15:44:24 +05:30
Merge Request Approvals can be configured to require approval from a member of your
security team when a merge request would introduce one of the following security issues:
- A security vulnerability
- A software license compliance violation
2019-10-12 21:52:04 +05:30
2020-03-13 15:44:24 +05:30
This threshold is defined as `high`, `critical`, or `unknown` severity. When any vulnerabilities are
present within a merge request, an approval is required from the `Vulnerability-Check` approver
group.
2019-10-12 21:52:04 +05:30
### Enabling Security Approvals within a project
To enable Security Approvals, a [project approval rule](../project/merge_requests/merge_request_approvals.md#multiple-approval-rules-premium)
2020-03-13 15:44:24 +05:30
must be created with the case-sensitive name `Vulnerability-Check`. This approval group must be set
with the number of approvals required greater than zero.
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.
2019-10-12 21:52:04 +05:30
2020-03-13 15:44:24 +05:30
Any code changes cause the approvals required to reset.
2019-10-12 21:52:04 +05:30
2020-03-13 15:44:24 +05:30
An approval is required when a security report:
2019-10-12 21:52:04 +05:30
- Contains a new vulnerability of `high`, `critical`, or `unknown` severity.
- Is not generated during pipeline execution.
2020-03-13 15:44:24 +05:30
An approval is optional when a security report:
2019-10-12 21:52:04 +05:30
- Contains no new vulnerabilities.
- Contains only new vulnerabilities of `low` or `medium` severity.
2019-12-04 20:38:33 +05:30
### Enabling License Approvals within a project
To enable License Approvals, a [project approval rule](../project/merge_requests/merge_request_approvals.md#multiple-approval-rules-premium)
2020-03-13 15:44:24 +05:30
must be created with the case-sensitive name `License-Check`. This approval group must be set
with the number of approvals required greater than zero.
2019-12-04 20:38:33 +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. To
configure how this rule behaves, you can choose which licenses to `approve` or `blacklist` in the
[project policies for License Compliance](license_compliance/index.md#project-policies-for-license-compliance)
section.
2019-12-04 20:38:33 +05:30
2020-03-13 15:44:24 +05:30
Any code changes cause the approvals required to reset.
2019-12-04 20:38:33 +05:30
2020-03-13 15:44:24 +05:30
An approval is required when a license report:
2019-12-04 20:38:33 +05:30
- Contains a dependency that includes a software license that is `blacklisted`.
- Is not generated during pipeline execution.
2020-03-13 15:44:24 +05:30
An approval is optional when a license report:
2019-12-04 20:38:33 +05:30
- Contains no software license violations.
- Contains only new licenses that are `approved` or unknown.
2019-12-26 22:10:19 +05:30
## Troubleshooting
2019-10-12 21:52:04 +05:30
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
2019-12-26 22:10:19 +05:30
When including a security job template like [`SAST`](sast/index.md#configuration),
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`.
- Change the default stage of the included security jobs. For example, with `SAST`:
```yaml
include:
template: SAST.gitlab-ci.yml
sast:
stage: unit-tests
```
[Learn more on overriding the SAST template](sast/index.md#overriding-the-sast-template).
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.