-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetwork.qll
More file actions
223 lines (186 loc) · 6.09 KB
/
Network.qll
File metadata and controls
223 lines (186 loc) · 6.09 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
private import bicep
module Network {
/**
* Represents a generic Microsoft.Network resource.
* Matches any resource of type Microsoft.Network/*.
*/
class NetworkResource extends Resource {
/**
* 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 Resource {
/**
* 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"
}
}
module VirtualNetworkProperties {
/**
* The properties object for the Microsoft.Network/virtualNetworks/subnets type.
*/
class Properties extends Object {
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()
}
}
}
}