-
Notifications
You must be signed in to change notification settings - Fork 0
/
xdr_api_wrapper.py
executable file
·229 lines (173 loc) · 6.78 KB
/
xdr_api_wrapper.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
import requests
import json
# Suppress SSL warning
from urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(category=InsecureRequestWarning)
##################################################
## APIError
class ApiError(Exception):
"""An API Error Exception"""
def __init__(self, status):
self.status = status
def __str__(self):
return "ApiError: status={}".format(self.status)
##################################################
## Cortex XDR API CLIENT
class XDRClient:
def __init__(self, configfile):
self.base_url = configfile['uri']
self.api = configfile['api']
self.api_key_id = configfile['api_key_id']
self.api_key = configfile['api_key']
def get_general_http_request(self, function):
#Create API call URI
fulluri = self.base_url \
+ self.api \
+ function
#Call API
resp = requests.get(
url=fulluri,
verify=False,
headers={
"x-xdr-auth-id": self.api_key_id,
"Authorization": self.api_key,
"Content-Type": "application/json"
}
)
if resp.status_code != 200:
raise ApiError(f'CALL {function} '.format(resp.status_code))
else:
return resp
def post_general_http_request(self, function, data):
#Create API call URI
fulluri = self.base_url \
+ self.api \
+ function
#Call API
resp = requests.post(
url=fulluri,
data=data,
verify=False,
headers={
"x-xdr-auth-id": self.api_key_id,
"Authorization": self.api_key,
"Content-Type": "application/json"
}
)
if resp.status_code != 200:
raise ApiError(f'CALL {function} '.format(resp.status_code) + json.dumps(resp.json()))
else:
return resp
def get_params_http_request(self, function, params):
"""
Takes the params in json string format, like:
{
"param1": "value1",
"param2": "value2"
}
The json param gets parsed to a uri string format and appended to the uri request
"""
#Create the params in uri string format
params_str=""
if (params != ""):
params_str="?"
params_dict=json.loads(params)
for f,v in params_dict.items():
params_str+=f+"="+v+"&"
params_str=params_str[:-1]
#Create API call URI
fulluri = self.base_url \
+ self.api \
+ function \
+ params_str
#Call API
resp = requests.get(
url=fulluri,
verify=False,
headers={
"x-xdr-auth-id": self.api_key_id,
"Authorization": self.api_key,
"Content-Type": "application/json"
}
)
if resp.status_code != 200:
raise ApiError(f'CALL {function} '.format(resp.status_code) + json.dumps(resp.json()))
else:
return resp
def get_incidents_http_request(self, data):
"""
# Get a list of incidents paramsed by a list of incident IDs, modification time, or creation time.
# data is a json formatted body containting the request_data
# https://docs.paloaltonetworks.com/cortex/cortex-xdr/cortex-xdr-api/cortex-xdr-apis/incident-management/get-incidents.html
"""
function = "incidents/get_incidents/"
return self.post_general_http_request(function, data)
def get_incident_extra_data_http_request(self, data):
"""
# Get extra data fields of a specific incident including alerts and key artifacts.
# The API includes a limit rate of 10 API requests per minute.
# https://docs.paloaltonetworks.com/cortex/cortex-xdr/cortex-xdr-api/cortex-xdr-apis/incident-management/get-extra-incident-data.html
"""
function = "incidents/get_incident_extra_data/"
return self.post_general_http_request(function, data)
def get_endpoint_http_request(self, data):
"""
# Gets a list of filtered endpoints
# https://docs.paloaltonetworks.com/cortex/cortex-xdr/cortex-xdr-api/cortex-xdr-apis/endpoint-management/get-endpoints.html
"""
function = "endpoints/get_endpoint/"
return self.post_general_http_request(function, data)
def get_alerts_http_request(self, data):
"""
# Get a list of alerts with multiple events.
# https://docs.paloaltonetworks.com/cortex/cortex-xdr/cortex-xdr-api/cortex-xdr-apis/incident-management/get-alerts.html
"""
function = "alerts/get_alerts_multi_events/"
return self.post_general_http_request(function, data)
def isolate_endpoint_http_request(self, data):
"""
# Isolate one or more endpoints in a single request. Request is limited to 1000 endpoints.
# https://docs.paloaltonetworks.com/cortex/cortex-xdr/cortex-xdr-api/cortex-xdr-apis/response-actions/isolate-endpoints.html
"""
function = "endpoints/isolate/"
return self.post_general_http_request(function, data)
def get_incidents(xdrclient, data):
"""
# Get a list of incidents paramsed by a list of incident IDs, modification time, or creation time.
"""
resp = xdrclient.get_incidents_http_request(data)
name = 'Cortex XDR Get Incidents'
output = json.dumps({"APICall": name, "Response": resp.json()}, indent=4)
return output
def get_incident_extra_data(xdrclient, data):
"""
# Get extra data fields of a specific incident including alerts and key artifacts.
"""
resp = xdrclient.get_incident_extra_data(data)
name = 'Cortex XDR Get Incident Extra Data'
output = json.dumps({"APICall": name, "Response": resp.json()}, indent=4)
return output
def get_endpoint(xdrclient, data):
"""
# Gets a list of filtered endpoints
"""
resp = xdrclient.get_endpoint_http_request(data)
name = 'Cortex XDR Get Endpoint'
output = json.dumps({"APICall": name, "Response": resp.json()}, indent=4)
return output
def get_alerts(xdrclient, data):
"""
# Get a list of alerts with multiple events.
"""
resp = xdrclient.get_alerts_http_request(data)
name = 'Cortex XDR Get Alerts'
output = json.dumps({"APICall": name, "Response": resp.json()}, indent=4)
return output
def isolate_endpoint(xdrclient, data):
"""
# Isolate one or more endpoints in a single request.
"""
resp = xdrclient.isolate_endpoint_http_request(data)
name = 'Cortex XDR Isolate Endpoints'
output = json.dumps({"APICall": name, "Response": resp.json()}, indent=4)
return output