-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolicyCSV.py
259 lines (206 loc) · 6.22 KB
/
policyCSV.py
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
import re
import getpass
import sys
import warnings
import requests
import time
import json
from fireREST import FMC
from netaddr import *
import ipaddress
import datetime
#Global Variable
globalRules = {}
def acpCSV(fmc, selection):
print ("Inside ACP")
for policy in selection:
ac_policy = policy
policyFile = open(ac_policy + ".csv", "w")
rules = fmc.policy.accesspolicy.accessrule.get(policy)
refRules = {}
policyFile.write("#, name,sourceZones, destZones, sourceNetworks, destNetworks, sourcePorts,destPorts, URL, APP, VLAN, Action, Enable, ipsPolicy, variableSet, filePolicy, logBegin, logEnd, sendEventsToFMC, syslogConfig, TimeRangeObject, Comments\n")
pos = 0
for ele in rules:
#print("##########################")
pos = pos + 1
#Atomic mandatory fields in policies
try:
ips = ele['ipsPolicy']['name']
except KeyError:
ips = "NULL"
try:
file = ele['filePolicy']['name']
except KeyError:
file = "NULL"
try:
variable = ele['variableSet']['name']
except KeyError:
variable = "NULL"
try:
fmcEvents = ele['sendEventsToFMC']
except KeyError:
fmcEvents = ele['sendEventsToFMC']
try:
begin = ele['logBegin']
except KeyError:
begin = "NULL"
try:
end = ele['logEnd']
except KeyError:
end = "NULL"
try:
syslog = ele['enableSyslog']
except KeyError:
syslog = "NULL"
enable = ele['enabled']
#TimeBased Objects
if ("timeRangeObjects" in ele.keys()):
for local in ele['timeRangeObjects']:
trObj = local['name']
else:
trObj = "NULL"
#Check for time Range ACL if present
#Zones Extraction
sZones = []
dZones = []
try:
temp = ele['sourceZones']
for key,value in temp.items():
for local in value:
sZones.append(local['name'])
except KeyError:
sZones.append("Any")
try:
temp = ele['destinationZones']
for key,value in temp.items():
for local in value:
dZones.append(local['name'])
except KeyError:
dZones.append("Any")
#Network Extraction
sNetwork = []
dNetwork = []
try:
temp = ele['sourceNetworks']
for key, value in temp.items():
if ('literals' in key):
for local in value:
sNetwork.append(local['value'])
if ('objects' in key):
for local in value:
sNetwork.append(local['name'])
except KeyError:
sNetwork.append("Any")
try:
temp = ele['destinationNetworks']
for key, value in temp.items():
if ('literals' in key):
for local in value:
dNetwork.append(local['value'])
if ('objects' in key):
for local in value:
dNetwork.append(local['name'])
except KeyError:
dNetwork.append("Any")
print (ele['name'], sNetwork, dNetwork)
#Port Extraction
sPort = []
dPort = []
try:
temp = ele['sourcePorts']
for key, value in temp.items():
for local in value:
if ('PortLiteral' in local['type']):
sPort.append(local['type'])
else:
sPort.append(local['name'])
except KeyError:
sPort.append("Any")
try:
temp = ele['destinationPorts']
for key, value in temp.items():
for local in value:
if ('PortLiteral' in local['type']):
dPort.append(local['port'])
else:
dPort.append(local['name'])
except KeyError:
dPort.append("Any")
#Applications and URL
app = []
url = []
try:
temp = (ele['urls'])
for key,value in temp.items():
if ("urlCategoriesWithReputation" in key):
for local in value:
url.append(local['category']['name'])
if ("literals" in key):
for local in value:
url.append(local['url'])
if ("objects" in key):
for local in value:
url.append(local['name'])
except KeyError:
url.append("Any")
try:
temp = ele['applications']
for key, value in temp.items():
for local in value:
if ("tags" in local.keys()):
item = local['tags']
for ite in item:
app.append(ite['name'])
if ("Application" in local['type']):
app.append(local['name'])
except KeyError:
app.append("Any")
#VLAN Tags
vlan = []
try:
temp = ele['vlanTags']
for key, value in temp.items():
for local in value:
if ('VlanTagLiteral' in local['type']):
vlan.append(local['startTag'])
else:
vlan.append(local['name'])
except KeyError:
vlan.append("Any")
#Comment History
comment = []
try:
temp = ele['commentHistoryList']
comment.append(temp)
except KeyError:
comment.append("Not Applicable")
# Write CSV Header
refRules[pos] = [pos, ele['name'], sZones, dZones, sNetwork, dNetwork, sPort, dPort, url, app, vlan, ele['action'], enable, ips, variable,file,begin, end, fmcEvents, syslog,trObj,comment]
print("Writing rule #{0} to CSV...".format(pos))
policyFile.write("{0}, {1}, {2}, {3}, {4}, {5}, {6}, {7}, {8}, {9}, {10}, {11}, {12}, {13}, {14}, {15}, {16}, {17}, {18}, {19}, {20}, {21}\n".format(pos,ele['name'],';'.join(sZones), ';'.join(dZones),';'.join(sNetwork), ';'.join(dNetwork),';'.join(sPort), ';'.join(dPort), url, app, vlan, ele['action'],enable, ips, variable, file, begin, end, fmcEvents, syslog, trObj, comment))
globalRules[policy] = refRules
print("File is at: ./{0}.csv".format(ac_policy))
policyFile.close()
def getInput():
hostname = input("Enter the IP Address of the FMC: ")
username = input("Enter the username for the FMC: ")
password = getpass.getpass("Enter the password associated with the username entered: ")
fmc = FMC(hostname=hostname, username=username, password=password, domain='Global')
acPolicies = fmc.policy.accesspolicy.get()
pol = {}
print ("ACP available in global domain: ")
for policy in acPolicies:
pol[policy['name']] = policy['id']
print ("\tName: ", policy['name'])
acp = input("Enter the ACP Name (case sensitive) if you want specific ACP to export(multiple values should be comma seperated). By default all the ACP would be exported, press return for default behaviour: ")
selection = []
if (acp):
temp = acp.split(",")
for local in temp:
local = local.replace(" ", "")
selection.append(pol[local])
else:
for local in acPolicies:
selection.append(local['id'])
acpCSV(fmc, selection)
getInput()