Test Analyze Mode Custom Report #1
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
on: | |
workflow_dispatch: | |
name: Test Analyze Mode Custom Report | |
jobs: | |
test-falco: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
actions: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Start Falco | |
uses: darryk10/falco-action/start@ddcff83af077b30af70f188ba7b5446c98041446 | |
with: | |
mode: analyze | |
verbose: true | |
- name: Overwrite Source Code | |
shell: bash | |
run: | | |
echo "pwned" > ${{ github.workspace }}/pwn.txt | |
- name: Read Sensitive File | |
run: | | |
sleep 3 | |
docker run --rm --privileged ubuntu cat /etc/shadow | |
sleep 3 | |
- name: Stop Falco | |
uses: darryk10/falco-action/stop@ddcff83af077b30af70f188ba7b5446c98041446 | |
with: | |
mode: analyze | |
verbose: true | |
analyze: | |
runs-on: ubuntu-latest | |
needs: test-falco | |
permissions: | |
contents: read | |
actions: read | |
steps: | |
- name: Analyze | |
uses: darryk10/falco-action/analyze@ddcff83af077b30af70f188ba7b5446c98041446 | |
with: | |
falco-version: '0.39.0' | |
extract-written-files: true | |
extract-chisels: true | |
extract-hashes: true | |