Skip to content

Files

Latest commit

author
Thorleif Jacobsen
Nov 12, 2023
3b5ed36 · Nov 12, 2023

History

History
43 lines (32 loc) · 1.53 KB

File metadata and controls

43 lines (32 loc) · 1.53 KB

Writeup

When starting up the container I'm greeted with a self hosted github clone. Looking at the open repositories available one of them runs a github action script as shown below.

name: Gitea Actions Test
run-name: ${{ github.actor }} is testing out Gitea Actions 🚀
on:
  issues:
    types:
      - opened

jobs:
  label_issue:
    runs-on: alpine
    steps:
      - env:
          FLAG: ${{ secrets.FLAG }}
          SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }}
          ISSUE_URL: ${{ github.event.issue.html_url }}
        run: |
          echo "Title: ${{ github.event.issue.title }}, Url: $ISSUE_URL"
          echo "@todo: Add slack integration and post summarized issue updates there"

This github action will be run on each new issue created. You can see the title of the issue will be echo'ed in the linux alpine docker image. We also see the flag beeing added as envirnoment variable.

So whatever I put in the title will be run within an echo command. So if I put int $FLAG as the title the commands the github actions will run is:

echo "Title: $FLAG, Url: $ISSUE_URL"
echo "@todo: Add slack integration and post summarized issue updates there $FLAG:"

Which will print the FLAG. But github will sensor that and replace it with *** so we need to find a way to bypass that. My first thought was to just remove one character and that worked flawlessly: ${FLAG::-1}

injection

And looking in the actions log I get this:

flag

Now just add the character I removed } and I get the flag!