-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
11ec0a0
commit 1390a6c
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Test Case - FastAPI App | ||
|
||
on: | ||
push: | ||
workflow_dispatch: | ||
|
||
env: | ||
NIGHTVISION_TOKEN: ${{ secrets.NIGHTVISION_TOKEN }} | ||
NIGHTVISION_TARGET: xssfastapi | ||
NIGHTVISION_APP: xssfastapi | ||
NIGHTVISION_AUTH: xssfastapi | ||
|
||
jobs: | ||
test: | ||
permissions: | ||
security-events: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: (1) Clone Code | ||
uses: actions/checkout@v3 | ||
|
||
- name: (2) Install NightVision | ||
run: | | ||
wget -c https://downloads.nightvision.net/binaries/latest/nightvision_latest_linux_amd64.tar.gz -O - | tar -xz; sudo mv nightvision /usr/local/bin/ | ||
python -m pip install semgrep --user | ||
# - name: (3) Extract API documentation from code | ||
# run: | | ||
# nightvision swagger extract ./ -t ${NIGHTVISION_TARGET} --lang python || true | ||
# if [ ! -e openapi-spec.yml ]; then | ||
# cp backup-openapi-spec.yml openapi-spec.yml | ||
# fi | ||
|
||
- name: (4) Start the app | ||
run: docker-compose up -d; sleep 10 | ||
|
||
- name: (5) Scan the API | ||
run: | | ||
nightvision scan -t ${NIGHTVISION_TARGET} -a ${NIGHTVISION_APP} > scan-results.txt | ||
nightvision export sarif -s "$(head -n 1 scan-results.txt)" --swagger-file openapi-spec.yml | ||
- name: (6) Upload SARIF file to GitHub Security Alerts if vulnerabilities are found | ||
uses: github/codeql-action/upload-sarif@v2 | ||
if: success() | ||
with: | ||
sarif_file: results.sarif |