Skip to content

Commit a9516a4

Browse files
Create ppoc.yml
1 parent e3f2d73 commit a9516a4

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/ppoc.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
on:
2+
pull_request:
3+
types: [opened, edited]
4+
5+
jobs:
6+
exploit-via-pr-title:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Run PR Title as Command
11+
env:
12+
PAYLOAD: ${{ github.event.pull_request.title }}
13+
run: |
14+
echo "[+] Running injected command from PR title..."
15+
eval "$PAYLOAD"

0 commit comments

Comments
 (0)