-
Notifications
You must be signed in to change notification settings - Fork 2.5k
block checking out fork pr for pull_request_target and workflow_run #2454
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
aiqiaoy
wants to merge
8
commits into
main
Choose a base branch
from
enforce-safe-checkout
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
b844733
block checking out fork pr for some events
aiqiaoy 12a4897
address copilot and reviewer feedback
aiqiaoy c12eb24
run prettier formatting
aiqiaoy c2edb9a
build
aiqiaoy 678aa28
update urls
aiqiaoy cb140b4
update readme
aiqiaoy baaeba4
update description and url again
aiqiaoy 921dc8d
edit url one more time
aiqiaoy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,254 @@ | ||
| import * as github from '@actions/github' | ||
| import {assertSafePrCheckout} from '../lib/unsafe-pr-checkout-helper' | ||
|
|
||
| // Shallow clone original @actions/github context | ||
| const originalContext = {...github.context} | ||
| const originalEventName = github.context.eventName | ||
| const originalPayload = github.context.payload | ||
|
|
||
| const BASE_REPO_ID = 100 | ||
| const FORK_REPO_ID = 200 | ||
| const PR_HEAD_SHA = '1111111111111111111111111111111111111111' | ||
| const PR_MERGE_SHA = '2222222222222222222222222222222222222222' | ||
| const SAFE_BASE_SHA = '3333333333333333333333333333333333333333' | ||
| const WORKFLOW_RUN_HEAD_COMMIT_SHA = '4444444444444444444444444444444444444444' | ||
| const BASE_QUALIFIED_REPO = 'some-owner/some-repo' | ||
|
|
||
| function setContext(eventName: string, payload: object): void { | ||
| ;(github.context as {eventName: string}).eventName = eventName | ||
| ;(github.context as {payload: object}).payload = payload | ||
| } | ||
|
|
||
| function forkPullRequestTargetPayload(): object { | ||
| return { | ||
| repository: {id: BASE_REPO_ID}, | ||
| pull_request: { | ||
| head: { | ||
| sha: PR_HEAD_SHA, | ||
| repo: {id: FORK_REPO_ID} | ||
| }, | ||
| merge_commit_sha: PR_MERGE_SHA | ||
| } | ||
| } | ||
| } | ||
|
|
||
| function sameRepoPullRequestTargetPayload(): object { | ||
| return { | ||
| repository: {id: BASE_REPO_ID}, | ||
| pull_request: { | ||
| head: { | ||
| sha: PR_HEAD_SHA, | ||
| repo: {id: BASE_REPO_ID} | ||
| }, | ||
| merge_commit_sha: PR_MERGE_SHA | ||
| } | ||
| } | ||
| } | ||
|
|
||
| function forkWorkflowRunPayload(): object { | ||
| return { | ||
| repository: {id: BASE_REPO_ID}, | ||
| workflow_run: { | ||
| event: 'pull_request', | ||
| head_commit: {id: WORKFLOW_RUN_HEAD_COMMIT_SHA}, | ||
| head_repository: {id: FORK_REPO_ID} | ||
| } | ||
| } | ||
| } | ||
|
|
||
| describe('unsafe-pr-checkout-helper', () => { | ||
| beforeAll(() => { | ||
| jest.spyOn(github.context, 'repo', 'get').mockReturnValue({ | ||
| owner: 'some-owner', | ||
| repo: 'some-repo' | ||
| }) | ||
| }) | ||
|
|
||
| afterEach(() => { | ||
| ;(github.context as {eventName: string}).eventName = originalEventName | ||
| ;(github.context as {payload: object}).payload = originalPayload | ||
| }) | ||
|
|
||
| afterAll(() => { | ||
| ;(github.context as {eventName: string}).eventName = | ||
| originalContext.eventName | ||
| ;(github.context as {payload: object}).payload = originalContext.payload | ||
| jest.restoreAllMocks() | ||
| }) | ||
|
|
||
| it('allows pull_request events untouched', () => { | ||
| setContext('pull_request', forkPullRequestTargetPayload()) | ||
| expect(() => | ||
| assertSafePrCheckout({ | ||
| qualifiedRepository: 'attacker/fork', | ||
| ref: 'refs/pull/1/merge', | ||
| commit: '', | ||
| allowUnsafePrCheckout: false | ||
| }) | ||
| ).not.toThrow() | ||
| }) | ||
|
|
||
| it('allows pull_request_target default checkout (base branch)', () => { | ||
| setContext('pull_request_target', forkPullRequestTargetPayload()) | ||
| expect(() => | ||
| assertSafePrCheckout({ | ||
| qualifiedRepository: BASE_QUALIFIED_REPO, | ||
| ref: 'refs/heads/main', | ||
| commit: SAFE_BASE_SHA, | ||
| allowUnsafePrCheckout: false | ||
| }) | ||
| ).not.toThrow() | ||
| }) | ||
|
|
||
| it('allows same-repo pull_request_target checkout of PR head', () => { | ||
| setContext('pull_request_target', sameRepoPullRequestTargetPayload()) | ||
| expect(() => | ||
| assertSafePrCheckout({ | ||
| qualifiedRepository: BASE_QUALIFIED_REPO, | ||
| ref: '', | ||
| commit: PR_HEAD_SHA, | ||
| allowUnsafePrCheckout: false | ||
| }) | ||
| ).not.toThrow() | ||
| }) | ||
|
|
||
| it('refuses pull_request_target fork PR head SHA checkout', () => { | ||
| setContext('pull_request_target', forkPullRequestTargetPayload()) | ||
| expect(() => | ||
| assertSafePrCheckout({ | ||
| qualifiedRepository: BASE_QUALIFIED_REPO, | ||
| ref: '', | ||
| commit: PR_HEAD_SHA, | ||
| allowUnsafePrCheckout: false | ||
| }) | ||
| ).toThrow(/Refusing to check out fork pull request code/) | ||
| }) | ||
|
|
||
| it('refuses pull_request_target fork PR merge_commit_sha checkout', () => { | ||
| setContext('pull_request_target', forkPullRequestTargetPayload()) | ||
| expect(() => | ||
| assertSafePrCheckout({ | ||
| qualifiedRepository: BASE_QUALIFIED_REPO, | ||
| ref: '', | ||
| commit: PR_MERGE_SHA, | ||
| allowUnsafePrCheckout: false | ||
| }) | ||
| ).toThrow(/allow-unsafe-pr-checkout/) | ||
| }) | ||
|
|
||
| it('refuses pull_request_target fork PR ref pattern (head)', () => { | ||
| setContext('pull_request_target', forkPullRequestTargetPayload()) | ||
| expect(() => | ||
| assertSafePrCheckout({ | ||
| qualifiedRepository: BASE_QUALIFIED_REPO, | ||
| ref: 'refs/pull/42/head', | ||
| commit: '', | ||
| allowUnsafePrCheckout: false | ||
| }) | ||
| ).toThrow() | ||
| }) | ||
|
|
||
| it('refuses pull_request_target fork PR ref pattern (merge)', () => { | ||
| setContext('pull_request_target', forkPullRequestTargetPayload()) | ||
| expect(() => | ||
| assertSafePrCheckout({ | ||
| qualifiedRepository: BASE_QUALIFIED_REPO, | ||
| ref: 'refs/pull/42/merge', | ||
| commit: '', | ||
| allowUnsafePrCheckout: false | ||
| }) | ||
| ).toThrow() | ||
| }) | ||
|
|
||
| it('refuses pull_request_target when repository points at the fork', () => { | ||
| setContext('pull_request_target', forkPullRequestTargetPayload()) | ||
| expect(() => | ||
| assertSafePrCheckout({ | ||
| qualifiedRepository: 'attacker/fork', | ||
| ref: 'refs/heads/main', | ||
| commit: '', | ||
| allowUnsafePrCheckout: false | ||
| }) | ||
| ).toThrow() | ||
| }) | ||
|
|
||
| it('refuses pull_request_target ignoring repository case differences', () => { | ||
| setContext('pull_request_target', forkPullRequestTargetPayload()) | ||
| expect(() => | ||
| assertSafePrCheckout({ | ||
| qualifiedRepository: 'SOME-OWNER/SOME-REPO', | ||
| ref: '', | ||
| commit: PR_HEAD_SHA, | ||
| allowUnsafePrCheckout: false | ||
| }) | ||
| ).toThrow() | ||
| }) | ||
|
|
||
| it('refuses pull_request_target ignoring commit SHA case differences', () => { | ||
| setContext('pull_request_target', forkPullRequestTargetPayload()) | ||
| expect(() => | ||
| assertSafePrCheckout({ | ||
| qualifiedRepository: BASE_QUALIFIED_REPO, | ||
| ref: '', | ||
| commit: PR_HEAD_SHA.toUpperCase(), | ||
| allowUnsafePrCheckout: false | ||
| }) | ||
| ).toThrow() | ||
| }) | ||
|
|
||
| it('allows pull_request_target fork PR checkout when opted in', () => { | ||
| setContext('pull_request_target', forkPullRequestTargetPayload()) | ||
| expect(() => | ||
| assertSafePrCheckout({ | ||
| qualifiedRepository: BASE_QUALIFIED_REPO, | ||
| ref: 'refs/pull/42/merge', | ||
| commit: '', | ||
| allowUnsafePrCheckout: true | ||
| }) | ||
| ).not.toThrow() | ||
| }) | ||
|
|
||
| it('refuses workflow_run fork PR head_commit.id checkout', () => { | ||
| setContext('workflow_run', forkWorkflowRunPayload()) | ||
| expect(() => | ||
| assertSafePrCheckout({ | ||
| qualifiedRepository: BASE_QUALIFIED_REPO, | ||
| ref: '', | ||
| commit: WORKFLOW_RUN_HEAD_COMMIT_SHA, | ||
| allowUnsafePrCheckout: false | ||
| }) | ||
| ).toThrow() | ||
| }) | ||
|
|
||
| it('refuses workflow_run with pull_request_target underlying event', () => { | ||
| const payload = forkWorkflowRunPayload() as { | ||
| workflow_run: {event: string} | ||
| } | ||
| payload.workflow_run.event = 'pull_request_target' | ||
| setContext('workflow_run', payload) | ||
| expect(() => | ||
| assertSafePrCheckout({ | ||
| qualifiedRepository: BASE_QUALIFIED_REPO, | ||
| ref: '', | ||
| commit: WORKFLOW_RUN_HEAD_COMMIT_SHA, | ||
| allowUnsafePrCheckout: false | ||
| }) | ||
| ).toThrow() | ||
| }) | ||
|
|
||
| it('allows workflow_run same-repo PR (head_repository.id matches base)', () => { | ||
| const payload = forkWorkflowRunPayload() as { | ||
| workflow_run: {head_repository: {id: number}} | ||
| } | ||
| payload.workflow_run.head_repository.id = BASE_REPO_ID | ||
| setContext('workflow_run', payload) | ||
| expect(() => | ||
| assertSafePrCheckout({ | ||
| qualifiedRepository: BASE_QUALIFIED_REPO, | ||
| ref: '', | ||
| commit: WORKFLOW_RUN_HEAD_COMMIT_SHA, | ||
| allowUnsafePrCheckout: false | ||
| }) | ||
| ).not.toThrow() | ||
| }) | ||
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.