Coordinated Disclosure Timeline
- 2021-02-04: Issue reported to maintainers.
- 2021-02-04: Report acknowledged.
- 2021-02-08: Issue fixed.
- 2021-02-23: Additional issue reported.
- 2021-03-24: Asked maintainers for status update.
- 2021-03-24: Report acknowledged.
- 2021-03-29: Issue fixed.
Summary
The main.yml, kubernetes-tests.yml, test.yml and build-tests.yml GitHub workflows are vulnerable to arbitrary code execution.
Product
game-ci/unity-test-runner repository
game-ci/unity-builder repository
game-ci/docker repository
Tested Version
The latest changeset of main.yml, kubernetes-tests.yml, test.yml and build-tests.yml to date.
Details
Issue: Untrusted code is explicitly checked out and run on a Pull Request from a fork
Workflows triggered on pull_request_target
have read/write tokens for the base repository and access to repository secrets. By explicitly checking out and running the build script from a fork, the untrusted code is running in an environment that is able to push to the base repository and access secrets. More details can be found in Keeping your GitHub Actions and workflows secure: Preventing pwn requests.
on:
push: { branches: [main] }
pull_request_target:
paths-ignore:
- ".github/**"
...
uses: actions/checkout@v2
if: github.event.event_type == 'pull_request_target'
with:
lfs: true
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
...
- uses: ./
...
The action.yml
file from the root directory is attacker controlled.
Impact
The vulnerability allows for unauthorized modification of the base repository and secrets exfiltration.
Credit
This issue was discovered and reported by GHSL team member @JarLob (Jaroslav Lobačevski).
Contact
You can contact the GHSL team at securitylab@github.com
, please include a reference to GHSL-2021-033
in any communication regarding this issue.