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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

470 lines
21 KiB
Markdown
Raw Normal View History

2020-05-24 23:13:21 +05:30
---
2020-06-23 00:09:42 +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
2020-05-24 23:13:21 +05:30
---
2021-04-17 20:07:23 +05:30
# Secret Detection **(FREE)**
2020-05-24 23:13:21 +05:30
2022-10-11 01:57:18 +05:30
> - In GitLab 13.1, Secret Detection was split from the [SAST configuration](../sast/index.md#configuration)
> into its own CI/CD template. If you're using GitLab 13.0 or earlier and SAST is enabled, then
> Secret Detection is already enabled.
> - [Moved](https://gitlab.com/gitlab-org/gitlab/-/issues/222788) from GitLab Ultimate to GitLab
> Free in 13.3.
> - [In GitLab 14.0](https://gitlab.com/gitlab-org/gitlab/-/issues/297269), Secret Detection jobs
> `secret_detection_default_branch` and `secret_detection` were consolidated into one job,
> `secret_detection`.
People may accidentally commit secrets to
remote Git repositories. Secrets include keys, passwords, API tokens, and other sensitive
2022-03-02 08:16:31 +05:30
information. Anyone with access to the repository could use the secrets for malicious purposes.
2022-10-11 01:57:18 +05:30
Exposed secrets are compromised and must be replaced, which can be costly.
To help prevent secrets from being committed to a Git repository, you can use Secret Detection
to scan your repository for secrets. Scanning is language
and framework agnostic, but does not support scanning binary files.
Secret Detection uses a specific analyzer containing the
[Gitleaks](https://github.com/zricethezav/gitleaks) tool to scan the repository for secrets, in a
`secret-detection` job. The results are saved as a
[Secret Detection report artifact](../../../ci/yaml/artifacts_reports.md#artifactsreportssecret_detection)
that you can later download and analyze. Due to implementation limitations, we always take the
latest Secret Detection artifact available.
GitLab SaaS supports post-processing hooks, so you can take action when a secret is found. For
more information, see [Post-processing and revocation](post_processing.md).
2020-05-24 23:13:21 +05:30
2022-10-11 01:57:18 +05:30
All identified secrets are reported in the:
2020-05-24 23:13:21 +05:30
2022-03-02 08:16:31 +05:30
- Merge request widget
2020-05-24 23:13:21 +05:30
- Pipelines' **Security** tab
2022-10-11 01:57:18 +05:30
- [Security Dashboard](../security_dashboard/index.md)
2020-05-24 23:13:21 +05:30
2020-07-28 23:09:34 +05:30
![Secret Detection in merge request widget](img/secret_detection_v13_2.png)
2020-05-24 23:13:21 +05:30
2022-03-02 08:16:31 +05:30
## Detected secrets
2021-01-29 00:20:46 +05:30
2022-03-02 08:16:31 +05:30
Secret Detection uses a [default ruleset](https://gitlab.com/gitlab-org/security-products/analyzers/secrets/-/blob/master/gitleaks.toml)
containing more than 90 secret detection patterns. You can also customize the secret detection
patterns using [custom rulesets](#custom-rulesets). If you want to contribute rulesets for
"well-identifiable" secrets, follow the steps detailed in the
[community contributions guidelines](https://gitlab.com/gitlab-org/gitlab/-/issues/345453).
2021-09-04 01:27:46 +05:30
2022-10-11 01:57:18 +05:30
## Features per tier
2020-10-24 23:57:45 +05:30
2022-10-11 01:57:18 +05:30
Different features are available in different [GitLab tiers](https://about.gitlab.com/pricing/).
2020-10-24 23:57:45 +05:30
2022-10-11 01:57:18 +05:30
| Capability | In Free & Premium | In Ultimate |
|:---------------------------------------------------------------- |:-----------------------|:-----------------------|
| [Configure Secret Detection scanner](#enable-secret-detection) | **{check-circle}** Yes | **{check-circle}** Yes |
| [Customize Secret Detection settings](#configure-scan-settings) | **{check-circle}** Yes | **{check-circle}** Yes |
| Download [JSON Report](../sast/index.md#reports-json-format) | **{check-circle}** Yes | **{check-circle}** Yes |
| See new findings in the merge request widget | **{dotted-circle}** No | **{check-circle}** Yes |
| View identified secrets in the pipelines' **Security** tab | **{dotted-circle}** No | **{check-circle}** Yes |
| [Manage vulnerabilities](../vulnerabilities/index.md) | **{dotted-circle}** No | **{check-circle}** Yes |
| [Access the Security Dashboard](../security_dashboard/index.md) | **{dotted-circle}** No | **{check-circle}** Yes |
| [Customize Secret Detection rulesets](#custom-rulesets) | **{dotted-circle}** No | **{check-circle}** Yes |
2020-10-24 23:57:45 +05:30
2022-10-11 01:57:18 +05:30
## Enable Secret Detection
2020-10-24 23:57:45 +05:30
2022-10-11 01:57:18 +05:30
Prerequisites:
2020-10-24 23:57:45 +05:30
2022-10-11 01:57:18 +05:30
- GitLab Runner with the [`docker`](https://docs.gitlab.com/runner/executors/docker.html) or
[`kubernetes`](https://docs.gitlab.com/runner/install/kubernetes.html) executor. If you're using the
shared runners on GitLab.com, this is enabled by default.
- If you use your own runners, make sure the Docker version installed is **not** `19.03.0`. See
[troubleshooting information](../sast#error-response-from-daemon-error-processing-tar-file-docker-tar-relocation-error)
for details.
- Linux/amd64 container type. Windows containers are not supported.
- GitLab CI/CD configuration (`.gitlab-ci.yml`) must include the `test` stage.
2020-05-24 23:13:21 +05:30
2022-10-11 01:57:18 +05:30
To enable Secret Detection, either:
2020-05-24 23:13:21 +05:30
2022-10-11 01:57:18 +05:30
- Enable [Auto DevOps](../../../topics/autodevops/index.md), which includes [Auto Secret Detection](../../../topics/autodevops/stages.md#auto-secret-detection).
2020-05-24 23:13:21 +05:30
2022-10-11 01:57:18 +05:30
- [Enable Secret Detection by including the template](#enable-secret-detection-by-including-the-template).
2020-05-24 23:13:21 +05:30
2022-10-11 01:57:18 +05:30
- [Enable Secret Detection using a merge request](#enable-secret-detection-using-a-merge-request).
2020-05-24 23:13:21 +05:30
2022-10-11 01:57:18 +05:30
### Enable Secret Detection by including the template
2020-06-23 00:09:42 +05:30
2022-10-11 01:57:18 +05:30
We recommend this method if you have an existing GitLab CI/CD configuration file.
2020-06-23 00:09:42 +05:30
2022-10-11 01:57:18 +05:30
Add the following extract to your `.gitlab-ci.yml` file:
2020-06-23 00:09:42 +05:30
```yaml
include:
2021-02-22 17:27:13 +05:30
- template: Security/Secret-Detection.gitlab-ci.yml
2020-06-23 00:09:42 +05:30
```
2022-10-11 01:57:18 +05:30
Pipelines now include a Secret Detection job, and the results are included in the merge request
widget.
2022-06-21 17:19:12 +05:30
2022-10-11 01:57:18 +05:30
### Enable Secret Detection using a merge request
2021-06-08 01:23:25 +05:30
2021-12-11 22:18:48 +05:30
> - [Introduced](https://gitlab.com/groups/gitlab-org/-/epics/4496) in GitLab 13.11, deployed behind a feature flag, enabled by default.
2021-09-30 23:02:18 +05:30
> - [Feature flag removed](https://gitlab.com/gitlab-org/gitlab/-/issues/329886) in GitLab 14.1.
2021-06-08 01:23:25 +05:30
2022-06-21 17:19:12 +05:30
NOTE:
This method works best with no existing `.gitlab-ci.yml` file, or with a minimal configuration
file. If you have a complex GitLab configuration file it may not be parsed successfully, and an
error may occur.
2021-06-08 01:23:25 +05:30
2022-10-11 01:57:18 +05:30
To enable Secret Detection using a merge request:
2021-06-08 01:23:25 +05:30
2022-10-11 01:57:18 +05:30
1. On the top bar, select **Main menu > Projects** and find your project.
2022-06-21 17:19:12 +05:30
1. On the left sidebar, select **Security & Compliance > Configuration**.
1. In the **Secret Detection** row, select **Configure with a merge request**.
2022-10-11 01:57:18 +05:30
1. Review and merge the merge request.
2021-11-18 22:05:49 +05:30
2022-10-11 01:57:18 +05:30
Pipelines now include a Secret Detection job, and the results are included in the merge request
widget.
2021-06-08 01:23:25 +05:30
2022-10-11 01:57:18 +05:30
## Configure scan settings
2020-06-23 00:09:42 +05:30
2021-09-04 01:27:46 +05:30
The Secret Detection scan settings can be changed through [CI/CD variables](#available-cicd-variables)
2022-10-11 01:57:18 +05:30
by using the [`variables`](../../../ci/yaml/index.md#variables) parameter in `.gitlab-ci.yml`.
2020-06-23 00:09:42 +05:30
2022-08-13 15:12:31 +05:30
WARNING:
2022-10-11 01:57:18 +05:30
All configuration of GitLab security scanning tools should be tested in a merge request before
2022-08-13 15:12:31 +05:30
merging these changes to the default branch. Failure to do so can give unexpected results,
including a large number of false positives.
2020-06-23 00:09:42 +05:30
To override a job definition, (for example, change properties like `variables` or `dependencies`),
2022-10-11 01:57:18 +05:30
declare a job with the same name as the secret detection job to override. Place this new job after
the template inclusion and specify any additional keys under it.
2021-03-11 19:13:27 +05:30
2022-10-11 01:57:18 +05:30
In the following example _extract_ of a `.gitlab-ci.yml` file:
2021-03-11 19:13:27 +05:30
2022-10-11 01:57:18 +05:30
- The Secret Detection template is [included](../../../ci/yaml/index.md#include).
- In the `secret_detection` job, the CI/CD variable `SECRET_DETECTION_HISTORIC_SCAN` is set to
`true`. Because the template is evaluated before the pipeline configuration, the last mention of
the variable takes precedence.
2020-06-23 00:09:42 +05:30
```yaml
include:
2021-02-22 17:27:13 +05:30
- template: Security/Secret-Detection.gitlab-ci.yml
2020-06-23 00:09:42 +05:30
2020-07-28 23:09:34 +05:30
secret_detection:
2020-06-23 00:09:42 +05:30
variables:
2020-07-28 23:09:34 +05:30
SECRET_DETECTION_HISTORIC_SCAN: "true"
2020-06-23 00:09:42 +05:30
```
2022-10-11 01:57:18 +05:30
### Available CI/CD variables
2020-06-23 00:09:42 +05:30
2021-03-11 19:13:27 +05:30
Secret Detection can be customized by defining available CI/CD variables:
2020-06-23 00:09:42 +05:30
2021-03-11 19:13:27 +05:30
| CI/CD variable | Default value | Description |
|-----------------------------------|---------------|-------------|
2022-08-27 11:52:29 +05:30
| `SECRET_DETECTION_EXCLUDED_PATHS` | "" | Exclude vulnerabilities from output based on the paths. This is a comma-separated list of patterns. Patterns can be globs (see [`doublestar.Match`](https://pkg.go.dev/github.com/bmatcuk/doublestar/v4@v4.0.2#Match) for supported patterns), or file or folder paths (for example, `doc,spec` ). Parent directories also match patterns. [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/225273) in GitLab 13.3. |
2021-03-11 19:13:27 +05:30
| `SECRET_DETECTION_HISTORIC_SCAN` | false | Flag to enable a historic Gitleaks scan. |
2022-10-11 01:57:18 +05:30
| `SECRET_DETECTION_IMAGE_SUFFIX` | "" | Suffix added to the image name. If set to `-fips`, `FIPS-enabled` images are used for scan. See [Use FIPS-enabled images](#use-fips-enabled-images) for more details. [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/355519) in GitLab 14.10. |
2022-07-23 23:45:48 +05:30
| `SECRET_DETECTION_LOG_OPTIONS` | "" | [`git log`](https://git-scm.com/docs/git-log) options used to define commit ranges. [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/350660) in GitLab 15.1.|
2020-06-23 00:09:42 +05:30
2022-07-16 23:28:13 +05:30
In previous GitLab versions, the following variables were also available:
| CI/CD variable | Default value | Description |
|-----------------------------------|---------------|-------------|
| `SECRET_DETECTION_COMMIT_FROM` | - | The commit a Gitleaks scan starts at. [Removed](https://gitlab.com/gitlab-org/gitlab/-/issues/243564) in GitLab 13.5. Replaced with `SECRET_DETECTION_COMMITS`. |
| `SECRET_DETECTION_COMMIT_TO` | - | The commit a Gitleaks scan ends at. [Removed](https://gitlab.com/gitlab-org/gitlab/-/issues/243564) in GitLab 13.5. Replaced with `SECRET_DETECTION_COMMITS`. |
2022-10-11 01:57:18 +05:30
| `SECRET_DETECTION_COMMITS` | - | The list of commits that Gitleaks should scan. [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/243564) in GitLab 13.5. [Removed](https://gitlab.com/gitlab-org/gitlab/-/issues/352565) in GitLab 15.0. |
2022-07-16 23:28:13 +05:30
2022-10-11 01:57:18 +05:30
#### Use FIPS-enabled images
2021-01-03 14:25:43 +05:30
2022-10-11 01:57:18 +05:30
> [Introduced](https://gitlab.com/groups/gitlab-org/-/epics/6479) in GitLab 14.10.
2021-01-03 14:25:43 +05:30
2022-10-11 01:57:18 +05:30
The default scanner images are built off a base Alpine image for size and maintainability. GitLab
offers [Red Hat UBI](https://www.redhat.com/en/blog/introducing-red-hat-universal-base-image)
versions of the images that are FIPS-enabled.
2022-04-04 11:22:00 +05:30
2022-10-11 01:57:18 +05:30
To use the FIPS-enabled images, either:
2022-04-04 11:22:00 +05:30
2022-10-11 01:57:18 +05:30
- Set the `SECRET_DETECTION_IMAGE_SUFFIX` CI/CD variable to `-fips`.
- Add the `-fips` extension to the default image name.
2021-01-03 14:25:43 +05:30
2022-10-11 01:57:18 +05:30
For example:
2021-01-03 14:25:43 +05:30
2022-10-11 01:57:18 +05:30
```yaml
variables:
SECRET_DETECTION_IMAGE_SUFFIX: '-fips'
2022-04-04 11:22:00 +05:30
2022-10-11 01:57:18 +05:30
include:
- template: Security/Secret-Detection.gitlab-ci.yml
```
2022-04-04 11:22:00 +05:30
2022-10-11 01:57:18 +05:30
## Full history Secret Detection
2022-04-04 11:22:00 +05:30
2022-10-11 01:57:18 +05:30
By default, Secret Detection scans only the current state of the Git repository. Any secrets
contained in the repository's history are not detected. To address this, Secret Detection can
scan the Git repository's full history.
We recommend you do a full history scan only once, after enabling Secret Detection. A full history
can take a long time, especially for larger repositories with lengthy Git histories. After
completing an initial full history scan, use only standard Secret Detection as part of your
pipeline.
### Enable full history Secret Detection
To enable full history Secret Detection, set the variable `SECRET_DETECTION_HISTORIC_SCAN` to `true` in your `.gitlab-ci.yml` file.
## Custom rulesets **(ULTIMATE)**
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/211387) in GitLab 13.5.
> - [Added](https://gitlab.com/gitlab-org/gitlab/-/issues/339614) support for passthrough chains.
> Expanded to include additional passthrough types of `file`, `git`, and `url` in GitLab 14.6.
> - [Added](https://gitlab.com/gitlab-org/gitlab/-/issues/235359) support for overriding rules in
> GitLab 14.8.
You can customize the default Secret Detection rules provided with GitLab.
2022-04-04 11:22:00 +05:30
2022-10-11 01:57:18 +05:30
The following customization options can be used separately, or in combination:
2022-04-04 11:22:00 +05:30
2022-10-11 01:57:18 +05:30
- [Disable predefined rules](#disable-predefined-analyzer-rules).
- [Override predefined rules](#override-predefined-analyzer-rules).
- [Synthesize a custom configuration](#synthesize-a-custom-configuration).
2022-04-04 11:22:00 +05:30
2022-10-11 01:57:18 +05:30
### Disable predefined analyzer rules
2022-04-04 11:22:00 +05:30
2022-10-11 01:57:18 +05:30
If there are specific Secret Detection rules that you don't want active, you can disable them.
To disable analyzer rules:
1. Create a `.gitlab` directory at the root of your project, if one doesn't already exist.
1. Create a custom ruleset file named `secret-detection-ruleset.toml` in the `.gitlab` directory, if
one doesn't already exist.
1. Set the `disabled` flag to `true` in the context of a `ruleset` section.
1. In one or more `ruleset.identifier` subsections, list the rules to disable. Every
`ruleset.identifier` section has:
- A `type` field for the predefined rule identifier.
- A `value` field for the rule name.
In the following example `secret-detection-ruleset.toml` file, the disabled rules are assigned to
`secrets` by matching the `type` and `value` of identifiers:
2022-04-04 11:22:00 +05:30
```toml
[secrets]
[[secrets.ruleset]]
disable = true
[secrets.ruleset.identifier]
type = "gitleaks_rule_id"
value = "RSA private key"
```
2022-10-11 01:57:18 +05:30
### Override predefined analyzer rules
2022-04-04 11:22:00 +05:30
2022-10-11 01:57:18 +05:30
If there are specific Secret Detection rules you want to customize, you can override them. For
example, you might increase the severity of specific secrets.
2022-04-04 11:22:00 +05:30
2022-10-11 01:57:18 +05:30
To override rules:
2022-04-04 11:22:00 +05:30
2022-10-11 01:57:18 +05:30
1. Create a `.gitlab` directory at the root of your project, if one doesn't already exist.
1. Create a custom ruleset file named `secret-detection-ruleset.toml` in the `.gitlab` directory, if
one doesn't already exist.
1. In one or more `ruleset.identifier` subsections, list the rules to override. Every
`ruleset.identifier` section has:
- A `type` field for the predefined rule identifier.
- A `value` field for the rule name.
2022-04-04 11:22:00 +05:30
1. In the `ruleset.override` context of a `ruleset` section,
provide the keys to override. Any combination of keys can be
overridden. Valid keys are:
- description
- message
- name
- severity (valid options are: Critical, High, Medium, Low, Unknown, Info)
2022-10-11 01:57:18 +05:30
In the following example `secret-detection-ruleset.toml` file, rules are matched by the `type` and
`value` of identifiers and then overridden:
2022-04-04 11:22:00 +05:30
```toml
[secrets]
[[secrets.ruleset]]
[secrets.ruleset.identifier]
type = "gitleaks_rule_id"
value = "RSA private key"
[secrets.ruleset.override]
description = "OVERRIDDEN description"
message = "OVERRIDDEN message"
name = "OVERRIDDEN name"
severity = "Info"
```
2022-10-11 01:57:18 +05:30
### Synthesize a custom configuration
2022-04-04 11:22:00 +05:30
2022-10-11 01:57:18 +05:30
To create a custom configuration, you can use passthrough chains. Passthroughs can also be chained
to build more complex configurations. For more details, see
[SAST Customize ruleset](../sast/customize_rulesets.md).
2022-04-04 11:22:00 +05:30
2022-10-11 01:57:18 +05:30
In the `secret-detection-ruleset.toml` file, do one of the following:
2021-01-03 14:25:43 +05:30
2022-10-11 01:57:18 +05:30
- Define a custom ruleset, for example:
2021-01-03 14:25:43 +05:30
2022-10-11 01:57:18 +05:30
```toml
[secrets]
description = 'secrets custom rules configuration'
2021-01-03 14:25:43 +05:30
2022-10-11 01:57:18 +05:30
[[secrets.passthrough]]
type = "raw"
target = "gitleaks.toml"
value = """\
title = "gitleaks config"
# add regexes to the regex table
[[rules]]
description = "Test for Raw Custom Rulesets"
regex = '''Custom Raw Ruleset T[est]{3}'''
"""
```
2021-01-03 14:25:43 +05:30
2022-10-11 01:57:18 +05:30
- Provide the name of the file containing a custom ruleset, for example:
2021-01-03 14:25:43 +05:30
2022-10-11 01:57:18 +05:30
```toml
[secrets]
description = 'secrets custom rules configuration'
2021-01-03 14:25:43 +05:30
2022-10-11 01:57:18 +05:30
[[secrets.passthrough]]
type = "file"
target = "gitleaks.toml"
value = "config/gitleaks.toml"
```
2021-01-03 14:25:43 +05:30
2022-10-11 01:57:18 +05:30
## Running Secret Detection in an offline environment **(PREMIUM SELF)**
2022-01-26 12:08:38 +05:30
2022-10-11 01:57:18 +05:30
For self-managed GitLab instances in an environment with limited, restricted, or intermittent access
to external resources through the internet, some configuration changes are required for the Secret
Detection job to run successfully. The instructions in this section must be completed together with
the instructions detailed in [offline environments](../offline_deployments/index.md).
2021-04-29 21:17:54 +05:30
2022-10-11 01:57:18 +05:30
### Configure GitLab Runner
2021-04-29 21:17:54 +05:30
2022-10-11 01:57:18 +05:30
By default, a runner tries to pull Docker images from the GitLab container registry even if a local
copy is available. We recommend using this default setting, to ensure Docker images remain current.
However, if no network connectivity is available, you must change the default GitLab Runner
`pull_policy` variable.
2020-05-24 23:13:21 +05:30
2022-10-11 01:57:18 +05:30
Configure the GitLab Runner CI/CD variable `pull_policy` to
[`if-not-present`](https://docs.gitlab.com/runner/executors/docker.html#using-the-if-not-present-pull-policy).
2020-05-24 23:13:21 +05:30
2022-10-11 01:57:18 +05:30
### Use local Secret Detection analyzer image
2020-05-24 23:13:21 +05:30
2022-10-11 01:57:18 +05:30
Use a local Secret Detection analyzer image if you want to obtain the image from a local Docker
registry instead of the GitLab container registry.
2021-02-22 17:27:13 +05:30
2022-10-11 01:57:18 +05:30
Prerequisites:
2021-02-22 17:27:13 +05:30
2022-10-11 01:57:18 +05:30
- Importing Docker images into a local offline Docker registry depends on your
network security policy. Consult your IT staff to find an accepted and approved process
to import or temporarily access external resources.
2021-02-22 17:27:13 +05:30
2022-10-11 01:57:18 +05:30
1. Import the default Secret Detection analyzer image from `registry.gitlab.com` into your
[local Docker container registry](../../packages/container_registry/index.md):
2021-02-22 17:27:13 +05:30
2022-10-11 01:57:18 +05:30
```plaintext
registry.gitlab.com/security-products/secret-detection:3
```
2021-02-22 17:27:13 +05:30
2022-10-11 01:57:18 +05:30
The Secret Detection analyzer's image is [periodically updated](../index.md#vulnerability-scanner-maintenance)
so you may need to periodically update the local copy.
2021-02-22 17:27:13 +05:30
2022-10-11 01:57:18 +05:30
1. Set the CI/CD variable `SECURE_ANALYZERS_PREFIX` to the local Docker container registry.
2021-01-03 14:25:43 +05:30
2022-10-11 01:57:18 +05:30
```yaml
include:
- template: Security/Secret-Detection.gitlab-ci.yml
2021-01-03 14:25:43 +05:30
2022-10-11 01:57:18 +05:30
variables:
SECURE_ANALYZERS_PREFIX: "localhost:5000/analyzers"
```
2021-01-03 14:25:43 +05:30
2022-10-11 01:57:18 +05:30
The Secret Detection job should now use the local copy of the Secret Detection analyzer Docker
image, without requiring internet access.
2021-01-03 14:25:43 +05:30
2022-10-11 01:57:18 +05:30
### Configure a custom Certificate Authority
2021-01-03 14:25:43 +05:30
2022-10-11 01:57:18 +05:30
To trust a custom Certificate Authority, set the `ADDITIONAL_CA_CERT_BUNDLE` variable to the bundle
of CA certificates that you trust. Do this either in the `.gitlab-ci.yml` file, in a file
variable, or as a CI/CD variable.
2021-12-11 22:18:48 +05:30
2022-10-11 01:57:18 +05:30
- In the `.gitlab-ci.yml` file, the `ADDITIONAL_CA_CERT_BUNDLE` value must contain the
[text representation of the X.509 PEM public-key certificate](https://tools.ietf.org/html/rfc7468#section-5.1).
2021-12-11 22:18:48 +05:30
2022-10-11 01:57:18 +05:30
For example:
2021-12-11 22:18:48 +05:30
2022-10-11 01:57:18 +05:30
```yaml
variables:
ADDITIONAL_CA_CERT_BUNDLE: |
-----BEGIN CERTIFICATE-----
MIIGqTCCBJGgAwIBAgIQI7AVxxVwg2kch4d56XNdDjANBgkqhkiG9w0BAQsFADCB
...
jWgmPqF3vUbZE0EyScetPJquRFRKIesyJuBFMAs=
-----END CERTIFICATE-----
```
2021-12-11 22:18:48 +05:30
2022-10-11 01:57:18 +05:30
- If using a file variable, set the value of `ADDITIONAL_CA_CERT_BUNDLE` to the path to the
certificate.
2021-12-11 22:18:48 +05:30
2022-10-11 01:57:18 +05:30
- If using a variable, set the value of `ADDITIONAL_CA_CERT_BUNDLE` to the text
representation of the certificate.
2021-01-03 14:25:43 +05:30
2022-10-11 01:57:18 +05:30
## Troubleshooting
2021-01-03 14:25:43 +05:30
2022-10-11 01:57:18 +05:30
### Set the logging level
2021-01-03 14:25:43 +05:30
2022-10-11 01:57:18 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/10880) in GitLab 13.1.
2021-09-30 23:02:18 +05:30
2022-10-11 01:57:18 +05:30
Set the logging level to `debug` when you need diagnostic information in a Secret Detection job log.
2021-09-30 23:02:18 +05:30
2022-10-11 01:57:18 +05:30
WARNING:
Debug logging can be a serious security risk. The output may contain the content of environment
variables and other secrets available to the job. The output is uploaded to the GitLab server and
visible in job logs.
2021-09-30 23:02:18 +05:30
2022-10-11 01:57:18 +05:30
1. In the `.gitlab-ci.yml` file, set the `SECURE_LOG_LEVEL` CI/CD variable to `debug`.
1. Run the Secret Detection job.
1. Analyze the content of the Secret Detection job.
1. In the `.gitlab-ci.yml` file, set the `SECURE_LOG_LEVEL` CI/CD variable to `info` (default).
2021-01-03 14:25:43 +05:30
2022-10-11 01:57:18 +05:30
### Warning: `gl-secret-detection-report.json: no matching files`
2021-01-03 14:25:43 +05:30
For information on this, see the [general Application Security troubleshooting section](../../../ci/pipelines/job_artifacts.md#error-message-no-files-to-upload).
2021-02-22 17:27:13 +05:30
### Error: `Couldn't run the gitleaks command: exit status 2`
2022-10-11 01:57:18 +05:30
The Secret Detection analyzer relies on generating patches between commits to scan content for
secrets. If the number of commits in a merge request is greater than the value of the
[`GIT_DEPTH` CI/CD variable](../../../ci/runners/configure_runners.md#shallow-cloning), Secret
Detection [fails to detect secrets](#error-couldnt-run-the-gitleaks-command-exit-status-2).
For example, if a pipeline is triggered from a merge request containing 60 commits and the
`GIT_DEPTH` variable's value is less than 60, the Secret Detection job fails as the clone is not
deep enough to contain all of the relevant commits. To veridy the current value, see
[pipeline configuration](../../../ci/pipelines/settings.md#limit-the-number-of-changes-fetched-during-clone).
2021-02-22 17:27:13 +05:30
2022-10-11 01:57:18 +05:30
To confirm this as the cause of the error, set the [logging level](#set-the-logging-level) to `debug`, then
2021-03-11 19:13:27 +05:30
rerun the pipeline. The logs should look similar to the following example. The text "object not
found" is a symptom of this error.
2021-02-22 17:27:13 +05:30
```plaintext
ERRO[2020-11-18T18:05:52Z] object not found
[ERRO] [secrets] [2020-11-18T18:05:52Z] ▶ Couldn't run the gitleaks command: exit status 2
[ERRO] [secrets] [2020-11-18T18:05:52Z] ▶ Gitleaks analysis failed: exit status 2
```
2021-09-04 01:27:46 +05:30
To resolve the issue, set the [`GIT_DEPTH` CI/CD variable](../../../ci/runners/configure_runners.md#shallow-cloning)
2021-03-11 19:13:27 +05:30
to a higher value. To apply this only to the Secret Detection job, the following can be added to
your `.gitlab-ci.yml` file:
2021-02-22 17:27:13 +05:30
```yaml
secret_detection:
variables:
GIT_DEPTH: 100
```
2022-04-04 11:22:00 +05:30
2022-10-11 01:57:18 +05:30
### Error: `ERR fatal: ambiguous argument`
2022-04-04 11:22:00 +05:30
2022-10-11 01:57:18 +05:30
Secret Detection can fail with the message `ERR fatal: ambiguous argument` error if your
repository's default branch is unrelated to the branch the job was triggered for. See issue
[!352014](https://gitlab.com/gitlab-org/gitlab/-/issues/352014) for more details.
2022-04-04 11:22:00 +05:30
2022-10-11 01:57:18 +05:30
To resolve the issue, make sure to correctly [set your default branch](../../project/repository/branches/default.md#change-the-default-branch-name-for-a-project)
on your repository. You should set it to a branch that has related history with the branch you run
the `secret-detection` job on.