Semgrep¶
The Semgrep analyzer performs Static Application Security Testing (SAST) scanning on repositories. It supports 30+ languages.
We developed an analyzer that wraps Semgrep to integrate with Code Secure.
CI Environment Variables¶
ENV | Description |
---|---|
SEMGREP_RULES | Semgrep rules config |
SEMGREP_SEVERITY | Semgrep severify filter (semgrep --severity). Option: INFO, WARNING, ERROR |
SEMGREP_EXCLUDED_PATHS | Semgrep exclude path (semgrep --exclude) |
SEMGREP_APP_TOKEN | Semgrep app token. See more here |
SEMGREP_PRO | Scan with pro engine. Require SEMGREP_APP_TOKEN variable |
SEMGREP_VERBOSE | Semgrep verbose (semgrep --verbose) |
SEMGREP_OUTPUT | Semgrep scan result output. Default semgrep.json |
PROJECT_PATH | Project dir to scan |
GitLab CI/CD¶
semgrep-sast-scan:
image: ghcr.io/califio/code-secure-semgrep:latest
rules:
- if: $CI_PIPELINE_SOURCE == "web"
- if: $CI_MERGE_REQUEST_IID
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
- if: $CI_COMMIT_TAG
script:
- /analyzer run
GitHub Action¶
Coming soon