Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: scan for vuln #98

Closed
wants to merge 25 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
fa40b6e
feat: scan for vuln
naveensrinivasan Mar 30, 2024
4d00963
included sarif publish
naveensrinivasan Mar 30, 2024
1b55089
updated the path
naveensrinivasan Mar 30, 2024
0d26aaf
fixed the trailing spaces
naveensrinivasan Mar 30, 2024
f7d249b
fixed the yamllint issues
naveensrinivasan Mar 30, 2024
809498a
included for registry1 and upstream
naveensrinivasan Mar 31, 2024
55dd114
fixed the lint issue
naveensrinivasan Apr 1, 2024
2e397f0
some more tweaks
naveensrinivasan Apr 1, 2024
f76d1b0
fixed yaml lint
naveensrinivasan Apr 1, 2024
46990ef
code review comments
naveensrinivasan Apr 1, 2024
233f612
included upload sarif into a single action
naveensrinivasan Apr 1, 2024
2b1f2a5
Some more tweaks
naveensrinivasan Apr 1, 2024
11cb80f
moved the upstream and registry1 to separate tasks
naveensrinivasan Apr 2, 2024
58f2ab2
included check if there aren't any sarif files
naveensrinivasan Apr 2, 2024
b20dc68
included path of the file which found the issue
naveensrinivasan Apr 2, 2024
7a668e4
yaml lint
naveensrinivasan Apr 2, 2024
a6c5d71
included config for grype to scan registry1
naveensrinivasan Apr 3, 2024
22d7f95
changes for grype config
naveensrinivasan Apr 3, 2024
1329ca6
login into registry1
naveensrinivasan Apr 3, 2024
d0078f9
upload the sarif for registry1
naveensrinivasan Apr 3, 2024
7f54ed6
trying without grype config
naveensrinivasan Apr 3, 2024
46b967e
removed the if condition check for registry1 upload to sarif
naveensrinivasan Apr 3, 2024
2864a20
refactor to a single task
naveensrinivasan Apr 3, 2024
685c9f3
fixed the wrong name
naveensrinivasan Apr 3, 2024
86c231d
removed the grype config tasks
naveensrinivasan Apr 3, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 81 additions & 0 deletions .github/workflows/scan.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
name: Scan for vulnerabilities

on:
pull_request:
branches: [main]
types: [milestoned, opened, synchronize]
schedule:
- cron: '0 1 * * *'
workflow_dispatch: {}

jobs:
# cannot scan registry1 and upstream at the same time because the sarif upload have a file limit of 20 files
scan-upstream:
runs-on: ubuntu-latest
name: Scan for vulnerabilities - Upstream
permissions:
contents: read
pull-requests: read

steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: 0

- name: Environment setup
uses: defenseunicorns/uds-common/.github/actions/setup@264ec430c4079129870820e70c4439f3f3d57cbc # v0.3.9
with:
username: ${{ secrets.IRON_BANK_ROBOT_USERNAME }}
password: ${{ secrets.IRON_BANK_ROBOT_PASSWORD }}


- name: Scan the repository for vulnerabilities - Upstream
env:
FLAVOR: upstream
run: |
uds run grype:install
uds run scan:scan

- name: Upload SARIF files - Upstream
uses: github/codeql-action/upload-sarif@1b1aada464948af03b950897e5eb522f92603cc2
with:
sarif_file: ./sarif

scan-registry1:
runs-on: ubuntu-latest
name: Scan for vulnerabilities - Registry1
permissions:
contents: read
pull-requests: read

steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: 0

- name: Environment setup
uses: defenseunicorns/uds-common/.github/actions/setup@264ec430c4079129870820e70c4439f3f3d57cbc # v0.3.9
with:
username: ${{ secrets.IRON_BANK_ROBOT_USERNAME }}
password: ${{ secrets.IRON_BANK_ROBOT_PASSWORD }}

- name: Iron Bank Login
env:
REGISTRY_USERNAME: ${{ secrets.IRON_BANK_ROBOT_USERNAME }}
REGISTRY_PASSWORD: ${{ secrets.IRON_BANK_ROBOT_PASSWORD }}
run: echo "${{ env.REGISTRY_PASSWORD }}" | uds zarf tools registry login -u "${{ env.REGISTRY_USERNAME }}" --password-stdin registry1.dso.mil
shell: bash

- name: Scan the repository for vulnerabilities - Registry1
run: |
uds run grype:install
uds run scan:scan
env:
FLAVOR: registry1

- name: Upload SARIF files - Registry1
uses: github/codeql-action/upload-sarif@1b1aada464948af03b950897e5eb522f92603cc2
with:
sarif_file: ./sarif
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ defense-unicorns-distro/preflight.sh
.terraform
tmp
zarf-sbom
sbom/
sarif/

.cache/
.idea/
Expand Down
6 changes: 4 additions & 2 deletions tasks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ includes:
- pull: https://github.com/raw/defenseunicorns/uds-common/v0.3.9/tasks/pull.yaml
- deploy: https://github.com/raw/defenseunicorns/uds-common/v0.3.9/tasks/deploy.yaml
- setup: https://github.com/raw/defenseunicorns/uds-common/v0.3.9/tasks/setup.yaml
- scan: ./tasks/scan.yaml
- grype: ./tasks/grype.yaml

tasks:
- name: default
Expand Down Expand Up @@ -39,8 +41,8 @@ tasks:
- task: dependencies:create
- task: create:test-bundle

# CI will execute the following (via uds-common/.github/actions/test) so they need to be here with these names

# CI will execute the following (via uds-common/.github/actions/test) so they need to be here with
# these names
- name: test-package
description: Test the GitLab package from the current branch
actions:
Expand Down
12 changes: 12 additions & 0 deletions tasks/grype.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
tasks:
- name: install
description: Check if Grype is installed, if not install it
actions:
- cmd: |
if ! command -v grype &> /dev/null; then
echo "Grype could not be found, installing..."
curl -sSfL https://github.com/raw/anchore/grype/main/install.sh | sh -s -- -b /usr/local/bin
else
echo "Grype is already installed."
fi
29 changes: 29 additions & 0 deletions tasks/scan.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
tasks:
- name: scan
description: Create a UDS package with specified flavor, extract the SBOM, and analyze for vulnerabilities
actions:
- cmd: |
bash -c '
flavor="${FLAVOR}"
output_dir="sbom/$flavor"
mkdir -p "$output_dir"
uds zarf package create . --flavor="$flavor" --confirm --no-progress -o "$output_dir"
for file in "$output_dir"/*.zst; do
uds zarf package inspect "$file" --sbom-out "$output_dir" --no-progress
done
sarif_output_dir="./sarif"
mkdir -p "$sarif_output_dir"
find "sbom/$flavor" -type f -name "*.json" | while read -r json_file; do
sarif_file_name="${flavor}_$(basename "${json_file}").sarif"
echo "Processing $json_file"
echo "Outputting to $sarif_output_dir/$sarif_file_name"
grype sbom:"$json_file" -o sarif --file "$sarif_output_dir/$sarif_file_name"
echo "Grype analysis for $json_file exported to $sarif_output_dir/$sarif_file_name (errors ignored)"
# Extract the base name of the SBOM file without the .json extension
sbom_base_name=$(basename "$json_file" .json)
# Use yq to replace the path with the SBOM file name without the .json extension
yq eval "(.runs[].results[].locations[].physicalLocation.artifactLocation.uri) = \"$sbom_base_name\"" "$sarif_output_dir/$sarif_file_name" -i
echo "Updated SARIF file path to $sbom_base_name using yq for $sarif_file_name"
done
'
Loading