-
-
Save roxsross/1f6b5f16bd66a0f0172f3f83a639a597 to your computer and use it in GitHub Desktop.
Jenkinsfile SAST
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipeline { | |
agent any | |
environment { | |
DOCKER_HUB_LOGIN = credentials('docker-hub') | |
VERSION = sh(script: 'jq --raw-output .version package.json', returnStdout: true).trim() | |
REPO = sh(script: 'basename `git rev-parse --show-toplevel`', returnStdout: true).trim() | |
REGISTRY = credentials('registry-hub') | |
SNYK_CREDENTIALS = credentials('snyk-token') | |
} | |
stages { | |
stage('Security SAST') { | |
parallel { | |
stage('Gitleaks-Scan') { | |
agent { | |
docker { | |
image 'zricethezav/gitleaks' | |
args '--entrypoint="" -u root -v ${WORKSPACE}:/src' | |
} | |
} | |
steps { | |
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { | |
script { | |
sh "gitleaks detect --verbose --source . -f json -r /src/report_gitleaks.json" | |
stash includes: 'report_gitleaks.json', name: 'report_gitleaks.json' | |
} | |
} | |
} | |
} | |
stage('NPMAudit-Scan') { | |
agent { | |
docker { | |
image 'node:16-alpine' | |
args '-u root:root -v ${WORKSPACE}:/src' | |
} | |
} | |
steps { | |
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { | |
script { | |
sh "npm audit --registry=https://registry.npmjs.org -audit-level=moderate --json > report_npmaudit.json" | |
stash includes: 'report_npmaudit.json', name: 'report_npmaudit.json' | |
} | |
} | |
} | |
} | |
stage('Semgrep-Scan') { | |
agent { | |
docker { | |
image 'returntocorp/semgrep' | |
args '-u root:root -v ${WORKSPACE}:/src' | |
} | |
} | |
steps { | |
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { | |
script { | |
sh "semgrep ci --json --exclude=package-lock.json --output /src/report_semgrep.json --config auto --config p/ci" | |
stash includes: 'report_semgrep.json', name: 'report_semgrep.json' | |
} | |
} | |
} | |
} | |
stage('Snyk-Code-Scan'){ | |
agent { | |
docker { | |
image 'snyk/snyk:node' | |
args '--entrypoint="" -e SNYK_TOKEN=$SNYK_CREDENTIALS -u root:root -v ${WORKSPACE}:/src' | |
} | |
} | |
steps { | |
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { | |
script { | |
sh "snyk test --json --file=package.json --severity-threshold=high --print-deps --print-deps-uses --print-vulnerabilities --print-trace --print-all-environment --json-file-output=report_snyk.json" | |
stash includes: 'report_snyk.json', name: 'report_snyk.json' | |
} | |
} | |
} | |
} | |
stage('Horusec-Scan') { | |
steps { | |
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { | |
script { | |
sh ''' | |
docker run --rm \ | |
-v /var/run/docker.sock:/var/run/docker.sock \ | |
-v $(pwd):/src \ | |
horuszup/horusec-cli:v2.9.0-beta.3 \ | |
horusec start \ | |
-p /src \ | |
-P "$(pwd)/src" \ | |
-e="true" \ | |
-o="json" \ | |
-O=src/report_horusec.json || true | |
''' | |
stash includes: 'report_horusec.json', name: 'report_horusec.json' | |
} | |
} | |
} | |
} | |
} | |
} | |
stage('Trivy-Scan') { | |
agent { | |
docker { | |
image 'aquasec/trivy:0.48.1' | |
args '--entrypoint="" -u root -v /var/run/docker.sock:/var/run/docker.sock -v ${WORKSPACE}:/src' | |
} | |
} | |
steps { | |
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { | |
script { | |
sh "trivy image --format json --output /src/report_trivy.json $REGISTRY/$REPO:$VERSION" | |
stash includes: 'report_trivy.json', name: 'report_trivy.json' | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment