Skip to content

Static Application Security Testing

Aptori leverages the industry-leading Semgrep tool for static application security testing. Aptori maintains the aptori/scanners container image, so you can easily incorporate an up-to-date SAST scanner into your CI/CD pipeline. Results from running aptori/scanners static application security testing on your source code repository are published to the Aptori Platform, alongside any security issues found by other Aptori tools.

Prerequisites

  • Asset ID of a Repository

    • To get the asset ID of an Repository, navigate to Projects in the Aptori Platform. On the tile of the Repository asset, open the Settings by click the three dots menu and choosing Settings. The asset ID is displayed inthe popup window.
    • To create a Repository asset, navigate to Projects in the Aptori Platform. At the top of the page, click "Add +" > "Add a Repository". Select the Project to which the Repository belongs and enter a name for the Repository.
  • Platform Key

    • To create a Platform Key, navigate to Keys in the Aptori Platform.

Running on a local repository path

With container runtime CLI tools such as Docker or nerdctl, you can run aptori/scanners on a local copy of your source code repository. For example, from the root directory of the source code, use Docker CLI to run a SAST scan:

docker run --rm -v "${PWD}:/src" \
    aptori/scanners scanners sast semgrep \
        --key {{Your Platform Key}} \
        --asset-id {{Your Asset ID}} \
        --labels "repository={{Your repo URL}}, branch=main"

Alternately, the Platform Key and Asset ID may be specified in environment variables. This is particularly helpful when running in CI/CD.

export APTORI_ACCESS_KEY={{Your Platform Key}}
export APTORI_ASSET_ID={{Your Asset ID}}

docker run --rm -v "${PWD}:/src" \
    --env APTORI_ACCESS_KEY --env APTORI_ASSET_ID \
    aptori/scanners scanners sast semgrep \
        --labels "repository={{Your repo URL}}, branch=main"

Labels

Labels allow you to add metadata to a SAST run. There are two labels that have special meaning in the Aptori Platform:

  • repository: The URL of your source code repository will be used to create links from Issues back to the source code. The URL need not be accessible by the Platform, only by users that may follow a link from an Issue.
  • branch: The branch in your source code repository for which the SAST run was performed. Aptori Platform uses the branch name to reference the appropriate revision of a file in the source code repository, when adding links to an Issue.

Running in CI/CD

Performing a SAST run in a CI/CD pipeline is easy with the aptori/scanners container. We recommend you use CI/CD variables to store details like the Platform Key and Asset ID.

GitLab example

In the following GitLab example, a job named aptori-sast is defined to run on commits made to the default branch of the repository. The job expects the following CI/CD variables to be defined in the GitLab repository settings.

  • APTORI_ACCESS_KEY
  • APTORI_ASSET_ID
stages:
  - test

aptori-sast:
  rules:
    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
  stage: test
  image: aptori/scanners
  script:
    - scanners sast semgrep --labels="repository=${CI_PROJECT_URL}, branch=${CI_COMMIT_BRANCH}, job=${CI_JOB_URL}"

CircleCI example

In the following CircleCI example, a job named aptori-sast is defined to perform SAST on the source code of the repository. The job expects the following Environment Variables to be defined in the Project Settings.

  • APTORI_ACCESS_KEY
  • APTORI_ASSET_ID
version: 2.1
jobs:
  aptori-sast:
    # Scan codebase for security issues using Aptori Scanners.
    # Requires variables to be defined: APTORI_ACCESS_KEY, APTORI_ASSET_ID
    docker:
      - image: aptori/scanners
    steps:
      - checkout
      - run:
          name: Run Aptori SAST
          command: scanners sast semgrep --labels="repository=${CIRCLE_REPOSITORY_URL}, branch=${CIRCLE_BRANCH}, job=${CIRCLE_BUILD_URL}"
workflows:
  build-and-test:
    jobs:
      - aptori-sast

Command Reference

The SAST command has the following syntax:

scanners sast semgrep [OPTIONS]

Values for key and asset-id options are required, but they may be supplied by environment variables APTORI_ACCESS_KEY and APTORI_ASSET_ID, respectively. If both the CLI argument and environment variable are present, the CLI argument takes precedence.

Options

Option Description Environment variable
--help, -h ` Show help message and exit
--asset-id, -a Asset ID of a repository defined in Aptori Platform APTORI_ASSET_ID
--command, -c Pass custom command arguments to semgrep tool
--environment-id, -e Environment ID where SAST run is being performed APTORI_ENVIRONMENT_ID
--key, -k ` Aptori Platform key APTORI_ACCESS_KEY
--labels, -l Labels for the run, in format of "key1=value1, key2=value2"
--platform-url, -p Specify the Aptori Platform URL APTORI_PLATFORM_URL