-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatchers.go
89 lines (70 loc) · 3.67 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// 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 (
"bytes"
"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 {
if allExprRegExp.Find(stripSafe(v)) == nil {
return nil
}
return allExprRegExp.FindAll(v, len(v))
}
var conservativeExprRegExp = regexp.MustCompile(`\${{.+?(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).+?}}`)
type conservativeExprMatcher struct{}
func (m conservativeExprMatcher) FindAll(v []byte) [][]byte {
if conservativeExprRegExp.Find(stripSafe(v)) == nil {
return nil
}
return conservativeExprRegExp.FindAll(v, len(v))
}
var (
boundary = `[\s,|&!=()<>]`
leading = `(?P<leading>\${{(.*?` + boundary + `|))`
trailing = `(?P<trailing>(` + boundary + `.*?|)}})`
LiteralInExprRegExp = regexp.MustCompile(leading + `(true|false|null|-?\d+(\.\d+)?|0x[0-9A-Fa-f]+|-?\d+\.\d+e-?\d+|'[^']+')` + trailing)
SafeFunctionInExprRegExp = regexp.MustCompile(leading + `((always|cancelled|contains|endsWith|failure|hashFiles|success|startsWith)\(([^,]*,)*[^,)]*\)|(format|fromJSON|join|toJSON)\([\s,]*\))` + trailing)
EmptyExprRegExp = regexp.MustCompile(`\${{` + boundary + `*}}`)
)
func stripSafe(v []byte) []byte {
exps := []regexp.Regexp{
*LiteralInExprRegExp,
*SafeFunctionInExprRegExp,
}
var r []byte
for !bytes.Equal(v, r) {
r = v
for _, exp := range exps {
v = exp.ReplaceAll(v, []byte("$leading$trailing"))
}
}
return EmptyExprRegExp.ReplaceAll(v, nil)
}