forked from cloudflare/terraform-provider-cloudflare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.semgrep.yml
131 lines (128 loc) · 4.34 KB
/
.semgrep.yml
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
rules:
- id: rfc-5737-ip-address
languages:
- generic
message: Where a real IPv4 address isn't needed, use IPv4 addresses from RFC5737.
paths:
include:
- '*_test.go'
- 'docs/'
- 'examples/'
- 'templates/'
patterns:
- pattern-regex: '\d+\.\d+\.\d+\.\d+'
- pattern-not-regex: '10\.\d+\.\d+.\d+'
- pattern-not-regex: '192\.168\.\d+.\d+'
- pattern-not-regex: '192\.0\.2\.\d+' # 192.0.2.0/24 (TEST-NET-1, rfc5737)
- pattern-not-regex: '198\.51\.100\.\d+' # 198.51.100.0/24 (TEST-NET-2, rfc5737)
- pattern-not-regex: '203\.0\.113\.\d+' # 203.0.113.0/24 (TEST-NET-3, rfc5737)
severity: WARNING
- id: rfc-3849-ip-address
languages:
- generic
message: Where a real IPv6 address isn't needed, use IPv6 addresses from RFC3849.
paths:
include:
- '*_test.go'
- 'docs/'
- 'examples/'
- 'templates/'
patterns:
- pattern-regex: '(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))'
severity: WARNING
- id: use-test-zone-ids
languages:
- hcl
message: In examples and acceptance tests, we should only use the test zone ID ("0da42c8d2132a9ddaf714f9e7c920711" or `testZoneID` in tests).
paths:
include:
- '*_test.go'
- 'docs/'
- 'examples/'
- 'templates/'
fix-regex:
regex: (zone_id\s*=\s*)\".*\"
replacement: \1"0da42c8d2132a9ddaf714f9e7c920711"
patterns:
- pattern: zone_id = "..."
- pattern-not: zone_id = "0da42c8d2132a9ddaf714f9e7c920711"
- pattern-either:
- pattern-inside: |
resource "..." "..." {
...
}
- pattern-inside: |
data "..." "..." {
...
}
severity: WARNING
- id: use-test-account-ids
languages:
- hcl
message: In examples and acceptance tests, we should only use the test account ID ("f037e56e89293a057740de681ac9abbe" or `testAccountID` in tests).
paths:
include:
- '*_test.go'
- 'docs/'
- 'examples/'
- 'templates/'
fix-regex:
regex: (account_id\s*=\s*)\".*\"
replacement: \1"f037e56e89293a057740de681ac9abbe"
patterns:
- pattern: account_id = "..."
- pattern-not: account_id = "f037e56e89293a057740de681ac9abbe"
- pattern-either:
- pattern-inside: |
resource "..." "..." {
...
}
- pattern-inside: |
data "..." "..." {
...
}
- pattern-inside: |
provider "..." "..." {
...
}
severity: WARNING
- id: calling-fmt.Print-and-variants
languages: [go]
message: Do not call `fmt.Print` and variants. Use `tflog` where logged output is required.
paths:
include:
- 'internal/'
patterns:
- pattern-either:
- pattern: |
fmt.Print(...)
- pattern: |
fmt.Printf(...)
- pattern: |
fmt.Println(...)
severity: WARNING
- id: calling-SetId-with-empty-string-in-resource-create
languages: [go]
message: Do not call `d.SetId("")` inside a resource create or update function.
paths:
include:
- 'internal/'
patterns:
- pattern: |
func $FUNC(...) {
...
d.SetId("")
...
}
- metavariable-regex:
metavariable: "$FUNC"
regex: "^resource\\w*(Create|Update)$"
severity: WARNING
- id: use-acctest-provider-factories
languages: [go]
message: Use acctest.ProviderFactories, not acctest.Providers
paths:
include:
- '*_test.go'
pattern-regex: Providers:\s+(acctest\.)?Providers,
severity: WARNING