-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetwork.qll
More file actions
347 lines (281 loc) · 10 KB
/
Network.qll
File metadata and controls
347 lines (281 loc) · 10 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
private import bicep
module Network {
/**
* Represents a generic Microsoft.Network resource.
* Matches any resource of type Microsoft.Network/*.
*/
class NetworkResource extends AzureResource {
/**
* Constructs a NetworkResource for any Microsoft.Network resource type.
*/
NetworkResource() { this.getResourceType().regexpMatch("^Microsoft.Network/.*") }
}
/**
* Represents a Microsoft.Network/networkInterfaces resource.
*/
class NetworkInterfaces extends NetworkResource {
/**
* Constructs a NetworkInterfaces resource.
*/
NetworkInterfaces() {
this.getResourceType().regexpMatch("^Microsoft.Network/networkInterfaces@.*")
}
/**
* Returns a string representation of the NetworkInterfaces resource.
*/
override string toString() { result = "NetworkInterfaces Resource" }
/**
* Returns the properties object for this network interface.
*/
NetworkInterfaceProperties::Properties getProperties() {
result = this.getProperty("properties")
}
}
/**
* A module for all properties of Microsoft.Network/networkInterfaces resources.
*/
module NetworkInterfaceProperties {
/**
* The properties object for the Microsoft.Network/networkInterfaces type.
*/
class Properties extends Object {
private NetworkInterfaces networkInterfaces;
/**
* Constructs a Properties object for the given network interface.
*/
Properties() { this = networkInterfaces.getProperty("properties") }
/**
* Returns the ipConfigurations property as an array of IpConfiguration objects.
*/
IpConfiguration getIpConfigurations() {
result = this.getProperty("ipConfigurations").(Array).getElements()
}
}
/**
* Represents an IpConfiguration for the Microsoft.Network/networkInterfaces type.
* See: https://learn.microsoft.com/en-us/azure/templates/microsoft.compute/virtualmachines?pivots=deployment-language-bicep#virtualmachinenetworkinterfaceipconfigurationproperties
*/
class IpConfiguration extends Object {
private Properties properties;
/**
* Constructs an IpConfiguration object for the given properties.
*/
IpConfiguration() { this = properties.getProperty("ipConfigurations").(Array).getElements() }
/**
* Returns the name property of the IpConfiguration.
*/
string getName() { result = this.getProperty("name").(StringLiteral).getValue() }
}
}
/**
* Represents a Microsoft.Network/virtualNetworks resource.
*/
class VirtualNetworks extends NetworkResource {
/**
* Constructs a VirtualNetworks resource.
*/
VirtualNetworks() {
this.getResourceType().regexpMatch("^Microsoft.Network/virtualNetworks@.*")
}
/**
* Returns a string representation of the VirtualNetworks resource.
*/
override string toString() { result = "VirtualNetworks Resource" }
/**
* Returns the properties object for the Microsoft.Network/virtualNetworks type.
*/
VirtualNetworkProperties::Properties getProperties() { result = this.getProperty("properties") }
}
/**
* Represents a Microsoft.Network/virtualNetworks/subnets resource.
*/
class VirtualNetworkSubnets extends AzureResource {
/**
* Constructs a VirtualNetworkSubnets resource.
*/
VirtualNetworkSubnets() {
this.getResourceType().regexpMatch("^Microsoft.Network/virtualNetworks/subnets@.*")
}
}
class NetworkAcl extends Object {
private Resource resource;
NetworkAcl() {
exists(Object props |
props = resource.getProperty("properties") and
this = props.getProperty(["networkAcl", "networkAcls"])
)
}
Resource getResource() { result = resource }
StringLiteral getBypass() { result = this.getProperty("bypass") }
string bypass() { result = this.getBypass().getValue() }
StringLiteral getDefaultAction() { result = this.getProperty("defaultAction") }
string defaultAction() { result = this.getDefaultAction().getValue() }
IpRule getIpRules() { result = this.getProperty("ipRules").(Array).getElements() }
string toString() { result = "Network ACL" }
}
class IpRule extends Object {
private NetworkAcl acl;
IpRule() { this = acl.getProperty("ipRules").(Array).getElements() }
NetworkAcl getNetworkAcl() { result = acl }
StringLiteral getValue() { result = this.getProperty("value") }
string toString() { result = "IP Rule" }
}
/**
* Represents the ingress configuration for a resource (e.g., container app).
* Provides access to ingress properties such as external, targetPort, transport, CORS policy, and allowInsecure.
*/
class Ingress extends Object {
private Object properties;
/**
* Constructs an Ingress object for the given properties.
*/
Ingress() { this = properties.getProperty("ingress") }
/**
* Returns the 'external' property as a Boolean.
*/
Boolean getExternal() { result = this.getProperty("external") }
/**
* Returns the 'external' property as a boolean.
*/
boolean external() { result = this.getExternal().(Boolean).getBool() }
/**
* Returns the 'targetPort' property as a Number.
*/
Number getTargetPort() { result = this.getProperty("targetPort") }
/**
* Returns the 'targetPort' property as an int.
*/
int targetPort() { result = this.getTargetPort().getValue() }
/**
* Returns the 'transport' property as a StringLiteral.
*/
StringLiteral getTransport() { result = this.getProperty("transport") }
/**
* Returns the 'transport' property as a string.
*/
string transport() { result = this.getTransport().getValue() }
/**
* Returns the 'corsPolicy' property as a CorsPolicy object.
*/
CorsPolicy getCorsPolicy() { result = this.getProperty("corsPolicy") }
/**
* Returns the 'allowInsecure' property as a Boolean.
*/
Boolean getAllowInsecure() { result = this.getProperty("allowInsecure") }
/**
* Returns the 'allowInsecure' property as a boolean.
*/
boolean allowInsecure() { result = this.getAllowInsecure().getBool() }
string toString() { result = "NetworkIngress" }
}
/**
* Represents a CORS policy for ingress.
* Provides access to CORS-related properties such as allowCredentials, allowedOrigins, allowedMethods, allowedHeaders, exposedHeaders, and maxAge.
*/
class CorsPolicy extends Object {
private Object properties;
/**
* Constructs a CorsPolicy object for the given properties.
*/
CorsPolicy() { this = properties.getProperty("corsPolicy") }
/**
* Returns the 'allowCredentials' property as a Boolean.
*/
Boolean getAllowCredentials() {
result = this.getProperty("allowCredentials")
}
/**
* Returns the 'allowCredentials' property as a boolean.
*/
boolean allowCredentials() { result = this.getAllowCredentials().getBool() }
/**
* Returns the 'allowedOrigins' property as an array of StringLiterals.
*/
Array getAllowedOrigins() {
result = this.getProperty("allowedOrigins")
}
/**
* Returns the 'allowedMethods' property as an array of StringLiterals.
*/
Array getAllowedMethods() {
result = this.getProperty("allowedMethods")
}
/**
* Returns the 'allowedHeaders' property as an array of StringLiterals.
*/
Array getAllowedHeaders() {
result = this.getProperty("allowedHeaders")
}
/**
* Returns the 'exposedHeaders' property as an array of StringLiterals.
*/
Array getExposedHeaders() {
result = this.getProperty("exposedHeaders")
}
/**
* Returns the 'maxAge' property as a Number.
*/
Number getMaxAge() { result = this.getProperty("maxAge") }
string toString() { result = "CorsPolicy" }
}
module VirtualNetworkProperties {
/**
* The properties object for the Microsoft.Network/virtualNetworks/subnets type.
*/
class Properties extends ResourceProperties {
private VirtualNetworkSubnets virtualNetworkSubnets;
/**
* Constructs a Properties object for the given subnet.
*/
Properties() { this = virtualNetworkSubnets.getProperty("properties") }
/**
* Returns the address space object for the subnet.
*/
AddressSpace getAddressSpace() { result = this.getProperty("addressSpace") }
/**
* Returns true if DDoS protection is enabled for the subnet.
*/
boolean getEnableDdosProtection() {
result = this.getProperty("enableDdosProtection").(Boolean).getBool()
}
/**
* Returns true if VM protection is enabled for the subnet.
*/
boolean getEnableVmProtection() {
result = this.getProperty("enableVmProtection").(Boolean).getBool()
}
}
/**
* Represents an AddressSpace for the Microsoft.Network/virtualNetworks type.
*/
class AddressSpace extends Object {
private Properties properties;
/**
* Constructs an AddressSpace object for the given properties.
*/
AddressSpace() { this = properties.getProperty("addressSpace") }
/**
* Returns the addressPrefixes property as a string value.
*/
string getAddressPrefixes() {
result =
this.getProperty("addressPrefixes").(Array).getElements().(StringLiteral).getValue()
}
}
}
class NetworkProfile extends Object {
private Resource resource;
NetworkProfile() {
exists(Object props |
props = resource.getProperty("properties") and
this = props.getProperty("networkProfile")
)
}
Resource getResource() { result = resource }
StringLiteral getNetworkPlugin() { result = this.getProperty("networkPlugin") }
string networkPlugin() { result = this.getNetworkPlugin().getValue() }
StringLiteral getNetworkPolicy() { result = this.getProperty("networkPolicy") }
string networkPolicy() { result = this.getNetworkPolicy().getValue() }
string toString() { result = "NetworkProfile" }
}
}