-
Notifications
You must be signed in to change notification settings - Fork 0
/
matchers.go
52 lines (41 loc) · 2.7 KB
/
matchers.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Copyright (C) 2024 Eric Cornelissen
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package ades
import (
"regexp"
)
// ExprMatcher is the interface for types that can find GitHub Actions Expressions in strings.
type ExprMatcher interface {
// FindAll is the function that returns all relevant GitHub Actions Expressions in the provided
// input.
FindAll([]byte) [][]byte
}
var (
// AllMatcher is an ExprMatcher that will find all GitHub Actions Expressions in strings.
AllMatcher allExprMatcher
// ConservativeMatcher is an ExprMatcher that will conservatively find GitHub Workflow
// Expressions in strings that are known to be controllable by attackers.
ConservativeMatcher conservativeExprMatcher
)
var allExprRegExp = regexp.MustCompile(`\$\{\{.*?\}\}`)
type allExprMatcher struct{}
func (m allExprMatcher) FindAll(v []byte) [][]byte {
return allExprRegExp.FindAll(v, len(v))
}
var conservativeExprRegExp = regexp.MustCompile(`\$\{\{\s*(github\.event\.issue\.title|github\.event\.issue\.body|github\.event\.discussion\.title|github\.event\.discussion\.body|github\.event\.comment\.body|github\.event\.review\.body|github\.event\.review_comment\.body|github\.event\.pages\[\d+\]\.page_name|github\.event\.commits\[\d+\]\.message|github\.event\.commits\[\d+\]\.author\.email|github\.event\.commits\[\d+\]\.author\.name|github\.event\.head_commit\.message|github\.event\.head_commit\.author\.email|github\.event\.head_commit\.author\.name|github\.event\.head_commit\.committer\.email|github\.event\.workflow_run\.head_branch|github\.event\.workflow_run\.head_commit\.message|github\.event\.workflow_run\.head_commit\.author\.email|github\.event\.workflow_run\.head_commit\.author\.name|github\.event\.pull_request\.title|github\.event\.pull_request\.body|github\.event\.pull_request\.head\.label|github\.event\.pull_request\.head\.repo\.default_branch|github\.head_ref|github\.event\.pull_request\.head\.ref|github\.event\.workflow_run\.pull_requests\[\d+\]\.head\.ref)\s*\}\}`)
type conservativeExprMatcher struct{}
func (m conservativeExprMatcher) FindAll(v []byte) [][]byte {
return conservativeExprRegExp.FindAll(v, len(v))
}