Scan for secrets

Use multiple ways to detect and triage secrets

Perform an endorctl scan using the following methods to detect secrets:

  • Scan a specific code reference - Scan for secrets only on a defined path in the context of a checked-out branch, commit SHA or tag to identify secrets and raise findings. This helps you to identify secrets that are leaked in the context of what you are working on right now.

  • Scan complete history - Scan for secrets in all existing branches or tags to identify if a secret has ever been leaked in the history of the project and raise findings. This helps you to identify if any secret has ever been leaked even if it was not leaked in the context of what you are working on right now.

  • Scan pre-commits - Scan for secrets in the code before committing the code to your repository during the automated pre-commit checks. This helps you identify and remove sensitive information from your code files very early in the development life cycle.

Scan a specific code reference

When starting a secrets scan, this default choice utilizes specified rules to search for patterns on the files located in the path where the scan is initiated.

To initiate a scan use the following command:

endorctl scan --secrets

Scan complete history

Users can scan the Git logs by using the complete history scan. The repository should be present in the scanned path. endorctl examines the entire repository history to search for secrets.

To perform a complete scan, include the --git-logs option in the command line.

endorctl scan --secrets --git-logs

Scan pre-commits

Users can scan their specific code updates before committing them to the code repository.

To perform a pre-commit scan, use the “–pre-commit-checks” option on the command line. The system will scan only the current changes that the user is trying to commit to the repository.

The following code snippet shows an example pre-commit script that needs to be added to .git/hooks/pre-commit.


#!/bin/bash
#
# Script invoked on git commit.
#
if ! endorctl scan --pre-commit-checks --secrets; then
   echo "Pre-commit checks failed"
   exit 1
fi
echo "No secrets found: Pre-commit checks succeeded"

endorctl should be initialized before performing the pre-commit scans. Use endorctl host-check --<your-namespace> before enabling it as a pre-commit hook.

Scan for secrets using regular expression

Endor Labs scans for secrets based on regular expressions that are designed to detect the presence of a secret. It then validates the discovered secrets against external APIs to identify if they are valid. Valid secrets actively provide access to a service or an application and can be used to gain unauthorized access.

Regular expressions are customized to match specific types of secrets, such as GitHub personal access tokens, OAuth access tokens, AWS access tokens, OpenAPI keys, Client IDs, Client Secrets, and more.

For example, a GitHub Personal Access Token can be described with the following regular expression:

github_pat_[0-9a-zA-Z_]{82}

Users can use the following rules to scan their codebase and detect secrets:

System rules - Endor Labs provides users with out-of-the-box rules for secret patterns for many public services like GitHub, GitLab, AWS, Bitbucket, Dropbox, and more.

Custom rules - If you are using a service that is not included in the out-of-the-box list of secret patterns provided by Endor Labs, you can build your own custom rule to scan and detect the secrets for any service.

System rules

You can view the out-of-the-box Endor Labs secret rules in the user interface or on the command line. The pre-configured secret rules are listed for several popular services such as GitHub, GitLab, AWS, Dropbox, Adobe, Atlassian, Bitbucket, Coinbase, Databricks, and more.

These are some of the most important fields of the rule definition:

Field name Description
meta.name The name of the rule
spec.rule_id The rule identifier must be unique across all rules, both the system and the ones created in your namespace
spec.regex This field contains the pattern that the secrets scanner will try to match against to create a result of this type
spec.keywords The keywords are used for an initial check of a pattern before the full regex expression gets evaluated
spec.validation The details about how a secret can be validated
spec.disabled Always enabled for system rules

Fetch system rules from the user interface

Use the following instructions to view the out-of-the-box Endor Labs secret rules in the user interface:

  • From the sidebar, click Settings and select SECRETS.
  • To view the complete details of a rule, click the three vertical dots on the right side and click View Rule.

Fetch system rules from the CLI

To fetch the Endor Labs secret scanning rules from the command line type the following commands:

endorctl api list -r SecretRule -n <your-namespace>

For example, to see the rule for the GitHub Personal Access Token, you could search by the name GitHub Personal Access Token or by the rule-id github-pat:

endorctl api get -r SecretRule -n <your-namespace> --name "GitHub Personal Access Token"
endorctl api list -r SecretRule -n <your-namespace> --filter=spec.rule_id==github-pat

Validator

You can use a validator to check if a discovered secret is valid or not. The Endor Labs system rules for secrets include the necessary validator. When you validate a secret, the finding for that secret is categorized as critical, ensuring it receives higher priority compared to others.

When defining a custom rule, you can add your own validator from the command line or from the user interface. The system uses this information to send an HTTP request such as a GET or POST to the address specified by the public service for the detected secret.

For example, when a GitHub Personal Access Token named “ghp_endor123” is detected, the system sends the following HTTP request to GitHub’s address:

curl -H "Authorization: Token "ghp_endor123" https://api.github.com/user

The authentication codes defined by the service are used to mark the secrets as valid or invalid.

The validation portion of the secret rule contains the following fields:

Field Description
name The name of the validator
http_request.uri The address where the HTTP request should be sent
http_request.method The HTTP method to be used (GET or POST)
http_request.header.(key, val) A set of key/value pairs that are added to the HTTP header. See HTTP Request Header
http_response.successful_auth_codes The set of HTTP response codes that should be used to tag a secret as valid. For example, http.StatusOK (200)
http_response.failed_auth_codes The set of HTTP response codes that should be used to tag a secret as invalid. For example, http.StatusUnauthorized (401)
HTTP Request Header

As shown above, this is a set of key/value pairs that should be added to the header. In its simplest form, it contains simple strings, for example:

{
    "key": "Content-Type",
    "value": "application/json"
}

There are cases where one needs to use a value on runtime and substitute a pattern. For example, the secret itself that needs to be substituted is one such case. This is achieved by declaring a value using the {{.Value}} pattern.

For the HTTP header section that includes the secret, the block looks like this:

{
    "key": "Token",
    "value": "{{.AuthzValue}}",
    "authz": true,
}

In this case, the scanner will replace the candidate secret that was detected and add it to the HTTP request header in place of {{.AuthzValue}}.

This describes a special case where this key/value pair is marked with the “authz” flag and is used to craft the “Authorization” part of the header, where three options are supported:

Key Header
Basic Authorization: Basic “hash{{.AuthzValue}}”
Bearer Authorization: Bearer {{.AuthzValue}}
Token Authorization: Token {{.AuthzValue}}

Custom rules

Endor Labs provides a way to build your own custom rule to scan and detect secrets of any service. You can also add validation rules to identify if the detected secrets are active. Endor Labs scans and validates the secrets and raises findings with severity as defined in the finding policy that includes this rule.

Create custom secret rules from the user interface

To create custom secret rules from the Endor Labs user interface, use the following procedure.

  1. Click Settings and select Secrets.
  2. Click Add Custom Detector.
  3. In the DECTECTOR NAME, enter a unique name to identify the service or the secret you want to scan.
  4. Enter a DESCRIPTION to include any additional details to easily identify your custom secret rule.
  5. In the DETECTION RULE, enter a Regex to validate this specific type of secret.
  6. To optionally configure a validation rule, in VALIDATION URL, enter the URL of your service that Endor Labs can use to verify the validity of this secret.
  7. In SUCCESS RESPONSE CODES, enter the set of HTTP response codes to tag a secret as valid. For example, 200 indicates the HTTP Status OK.
  8. In FAILURE RESPONSE CODES, enter the set of HTTP response codes to tag a secret as invalid. For example, 401 indicates the HTTP Status Unauthorized.
  9. From the Authorization Header, select the authorization method used by the secrets provider.

Create custom secret rules from the command line

For example, consider a token “demo_value123” can be described using a regular expression. Here is an example of the rule specification:

"meta": {
    "name": "Demo Token"
},
"spec": {
    "disabled": false,
    "keywords": [
        "demo_"
    ],
    "regex": "demo_[0-9a-zA-Z]{20}",
    "rule_id": "demo-rule"
}

Use the following command from the CLI to create this custom rule.

$ endorctl api create -r SecretRule -n demo  \
> --data '{
> "meta": {
>     "name": "Demo Token"
> },
> "spec": {
>     "disabled": false,
>     "keywords": [
>         "demo_"
>     ],
>     "regex": "demo_[0-9a-zA-Z]{20}",
>     "rule_id": "demo-rule"
> }
> }'
INFO: Initiating host-check ...
INFO: Host-check complete
{
  "meta": {
    "create_time": "2023-09-27T17:08:18.436936Z",
    "kind": "SecretRule",
    "name": "Demo Token",
    "update_time": "2023-09-27T17:08:18.436936Z",
    "upsert_time": "2023-09-27T17:08:18.436936Z",
    "version": "v1"
  },
  "spec": {
    "disabled": false,
    "keywords": [
      "demo_"
    ],
    "regex": "demo_[0-9a-zA-Z]{20}",
    "rule_id": "demo-rule"
  },
  "tenant_meta": {
    "namespace": "demo"
  },
  "uuid": "65146182aaeeffbaf5b6b553"
}

After the rule is created, the system uses this rule to detect this category of secrets.

If you can validate the secret using an HTTP request, then you can also add validation to this rule. See the following example for creating a validation rule for a demo_test123 token.

curl -H "Authorization: Bearer "demo_test123" https://api.testserver.com/user

Then the validation specification can be:

"validation": {
    "name": "Demo secrets validator",
    "http_request": {
        "header": [
            {
                "key": "Bearer",
                "value": "{{.AuthzValue}}",
                "authz": true
            }
        ],
        "method": "GET",
        "uri": "https://api.testserver.com/user"
    },
    "http_response": {
        "failed_auth_codes": [
            401
        ],
        "successful_auth_codes": [
            200
        ]
    }
}

View secret findings

Users can view the findings generated out of secrets, prioritize them and take corrective action.

  • From the sidebar, select Findings.
  • Click Secrets to view secret findings and their severities.