-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy path_duo_authenticator.py
648 lines (556 loc) · 20.7 KB
/
_duo_authenticator.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
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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
import click
import lxml.etree as ET
from fido2.client import ClientData, ClientError, U2fClient
from fido2.hid import CtapHidDevice
try:
from fido2.pcsc import CtapPcscDevice
except ImportError:
CtapPcscDevice = None
import logging
import json
import re
from threading import Event, Thread
try:
# Python 3
from urllib.parse import urlparse, parse_qs
import queue
except ImportError:
# Python 2
from urlparse import urlparse, parse_qs
import Queue as queue
from . import roles_assertion_extractor
_headers = {
'Accept-Language': 'en',
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) Gecko/20100101 Firefox/60.0',
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
'Accept': 'text/plain, */*; q=0.01',
}
def extract(html_response, ssl_verification_enabled, u2f_trigger_default, session):
"""
this strategy is based on description from: https://duo.com/docs/duoweb
:param response: raw http response
:param html_response: html result of parsing http response
:return:
"""
duo_host = _duo_host(html_response)
duo_request_signature = _duo_request_signature(html_response)
roles_page_url = _action_url_on_validation_success(html_response)
click.echo("Sending request for authentication", err=True)
(sid, preferred_factor, preferred_device, u2f_supported, auth_signature), initiated = _initiate_authentication(
duo_host,
duo_request_signature,
roles_page_url,
session,
ssl_verification_enabled
)
if initiated:
if auth_signature is None:
click.echo("Waiting for additional authentication", err=True)
rq = queue.Queue()
auth_count = 0
if u2f_supported:
# Trigger U2F authentication
auth_count += 1
t = Thread(
target=_perform_authentication_transaction,
args=(
duo_host,
sid,
preferred_factor,
preferred_device,
True,
session,
ssl_verification_enabled,
rq,
)
)
t.daemon = True
t.start()
if u2f_trigger_default or not u2f_supported:
# Trigger default authentication (call or push) concurrently to U2F
auth_count += 1
t = Thread(
target=_perform_authentication_transaction,
args=(
duo_host,
sid,
preferred_factor,
preferred_device,
False,
session,
ssl_verification_enabled,
rq,
)
)
t.daemon = True
t.start()
while "Wait for responses":
auth_signature = rq.get()
auth_count -= 1
if auth_signature != "cancelled":
break
if auth_count < 1:
click.echo("All authentication methods cancelled, aborting.")
exit(-2)
click.echo('Going for aws roles', err=True)
return _retrieve_roles_page(
roles_page_url,
_context(html_response),
session,
ssl_verification_enabled,
'{}:{}'.format(auth_signature, _app(duo_request_signature)),
)
return None, None, None
def _perform_authentication_transaction(duo_host, sid, preferred_factor, preferred_device, use_u2f, session, ssl_verification_enabled, rq):
if (preferred_factor is None or preferred_device is None) and not use_u2f:
click.echo("No default authentication method configured.")
preferred_factor = click.prompt(text='Please enter your desired authentication method (Ex: Duo Push)', type=str)
transaction_id = _begin_authentication_transaction(
duo_host,
sid,
preferred_factor,
preferred_device,
use_u2f,
session,
ssl_verification_enabled
)
transaction_id =_verify_authentication_status(
duo_host,
sid,
transaction_id,
session,
ssl_verification_enabled,
)
if transaction_id == "cancelled":
rq.put("cancelled")
else:
rq.put(
_authentication_result(
duo_host, sid, transaction_id, session, ssl_verification_enabled
)
)
def _context(html_response):
context_query = './/input[@id="context"]'
element = html_response.find(context_query)
return element.get('value')
def _retrieve_roles_page(roles_page_url, context, session, ssl_verification_enabled,
signed_response):
logging.debug('context: {}'.format(context))
logging.debug('sig_response: {}'.format(signed_response))
response = session.post(
roles_page_url,
verify=ssl_verification_enabled,
headers=_headers,
allow_redirects=True,
data={
'AuthMethod': 'DuoAdfsAdapter',
'Context': context,
'sig_response': signed_response,
}
)
logging.debug(u'''Request:
* url: {}
* headers: {}
Response:
* status: {}
* headers: {}
* body: {}
'''.format(roles_page_url, response.request.headers, response.status_code, response.headers,
response.text))
if response.status_code != 200:
raise click.ClickException(
u'Issues during redirection to aws roles page. The error response {}'.format(
response
)
)
# Save session cookies to avoid having to repeat MFA on each login
session.cookies.save(ignore_discard=True)
html_response = ET.fromstring(response.text, ET.HTMLParser())
return roles_assertion_extractor.extract(html_response)
def _authentication_result(
duo_host,
sid,
duo_transaction_id,
session,
ssl_verification_enabled
):
status_for_url = "https://{}/frame/status".format(duo_host)
response = session.post(
status_for_url,
verify=ssl_verification_enabled,
headers=_headers,
data={
'sid': sid,
'txid': duo_transaction_id
}
)
logging.debug(u'''Request:
* url: {}
* headers: {}
Response:
* status: {}
* headers: {}
* body: {}
'''.format(status_for_url, response.request.headers, response.status_code, response.headers,
response.text))
if response.status_code != 200:
raise click.ClickException(
u'Issues during retrieval of a code entered into '
u'the device. The error response {}'.format(
response
)
)
json_response = response.json()
if json_response['stat'] != 'OK':
raise click.ClickException(
u'There was an issue during retrieval of a code entered into the device.'
u' The error response: {}'.format(
response.text
)
)
if json_response['response']['status_code'] != 'allow':
raise click.ClickException(
u'There was an issue during retrieval of a code entered into the device.'
u' The error response: {}'.format(
response.text
)
)
result_url = response.json()['response']['result_url']
duo_result_response = _load_duo_result_url(duo_host, result_url, sid, session, ssl_verification_enabled)
auth_signature = duo_result_response.json()['response']['cookie']
return auth_signature
def _load_duo_result_url(
duo_host,
result_url,
sid,
session,
ssl_verification_enabled
):
result_for_url = 'https://{}'.format(duo_host) + result_url
response = session.post(
result_for_url,
verify=ssl_verification_enabled,
headers=_headers,
data={
'sid': sid
}
)
logging.debug(u'''Request:
* url: {}
* headers: {}
Response:
* status: {}
* headers: {}
* body: {}
'''.format(result_for_url, response.request.headers, response.status_code, response.headers,
response.text))
if response.status_code != 200:
raise click.ClickException(
u'Issues when following the Duo result URL after '
u'authentication. The error response {}'.format(
response
)
)
json_response = response.json()
if json_response['stat'] != 'OK':
raise click.ClickException(
u'There was an issue when following the Duo result URL after authentication.'
u' The error response: {}'.format(
response.text
)
)
return response
def _verify_authentication_status(duo_host, sid, duo_transaction_id, session,
ssl_verification_enabled):
responses = []
while len(responses) < 10:
status_for_url = "https://{}/frame/status".format(duo_host)
response = session.post(
status_for_url,
verify=ssl_verification_enabled,
headers=_headers,
data={
'sid': sid,
'txid': duo_transaction_id
}
)
logging.debug(u'''Request:
* url: {}
* headers: {}
Response:
* status: {}
* headers: {}
* body: {}
'''.format(status_for_url, response.request.headers, response.status_code, response.headers,
response.text))
if response.status_code != 200:
raise click.ClickException(
u'Issues during second factor verification. The error response {}'.format(
response
)
)
json_response = response.json()
if json_response['stat'] != 'OK':
raise click.ClickException(
u'There was an issue during second factor verification. The error response: {}'.format(
response.text
)
)
if json_response['response']['status_code'] not in ['answered', 'calling', 'pushed', 'u2f_sent']:
raise click.ClickException(
u'There was an issue during second factor verification. The error response: {}'.format(
response.text
)
)
if json_response['response']['status_code'] in ['pushed', 'answered', 'allow']:
return duo_transaction_id
if json_response['response']['status_code'] == 'u2f_sent' and len(json_response['response']['u2f_sign_request']) > 0:
u2f_sign_requests = json_response['response']['u2f_sign_request']
# appId, challenge and session is the same for all requests, get them from the first
u2f_app_id = u2f_sign_requests[0]['appId']
u2f_challenge = u2f_sign_requests[0]['challenge']
u2f_session_id = u2f_sign_requests[0]['sessionId']
devices = list(CtapHidDevice.list_devices())
if CtapPcscDevice:
devices.extend(list(CtapPcscDevice.list_devices()))
if not devices:
click.echo("No FIDO U2F authenticator is eligible.")
return "cancelled"
threads = []
u2f_response = {
"sessionId": u2f_session_id
}
rq = queue.Queue()
cancel = Event()
for device in devices:
t = Thread(
target=_u2f_sign,
args=(
device,
u2f_app_id,
u2f_challenge,
u2f_sign_requests,
duo_host,
sid,
u2f_response,
session,
ssl_verification_enabled,
cancel,
rq
)
)
t.daemon = True
threads.append(t)
t.start()
# Wait for first answer
return rq.get()
responses.append(response.text)
raise click.ClickException(
u'There was an issue during second factor verification. The responses: {}'.format(
responses
)
)
def _u2f_sign(device, u2f_app_id, u2f_challenge, u2f_sign_requests, duo_host, sid, u2f_response, session, ssl_verification_enabled, cancel, rq):
click.echo("Activate your FIDO U2F authenticator now: '{}'".format(device), err=True)
client = U2fClient(device, u2f_app_id)
try:
u2f_response.update(
client.sign(
u2f_app_id,
u2f_challenge,
u2f_sign_requests,
event=cancel
)
)
# Cancel the other U2F prompts
cancel.set()
click.echo("Got response from FIDO U2F authenticator: '{}'".format(device), err=True)
rq.put(_submit_u2f_response(duo_host, sid, u2f_response, session, ssl_verification_enabled))
except:
pass
finally:
device.close()
_tx_pattern = re.compile("(TX\|[^:]+):APP.+")
def _tx(request_signature):
m = _tx_pattern.search(request_signature)
return m.group(1)
_app_pattern = re.compile(".*(APP\|[^:]+)")
def _app(request_signature):
m = _app_pattern.search(request_signature)
return m.group(1)
def _initiate_authentication(duo_host, duo_request_signature, roles_page_url, session,
ssl_verification_enabled):
prompt_for_url = 'https://{}/frame/web/v1/auth'.format(duo_host)
response = session.post(
prompt_for_url,
verify=ssl_verification_enabled,
headers={
'Host': duo_host,
'User-Agent': "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36",
'Accept': "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
'Accept-Language': "en-US,en;q=0.5",
'Accept-Encoding': "gzip, deflate, br",
'DNT': "1",
'Upgrade-Insecure-Requests': "1",
'Content-Type': "application/x-www-form-urlencoded",
},
allow_redirects=True,
params={
'tx': _tx(duo_request_signature),
'parent': roles_page_url,
'v': '2.3',
},
data={
'parent': roles_page_url,
'java_version': '',
'flash_version': '',
'screen_resolution_width': '1280',
'screen_resolution_height': '800',
'color_depth': '24',
}
)
logging.debug(u'''Request:
* url: {}
* headers: {}
Response:
* status: {}
* headers: {}
* body: {}
'''.format(prompt_for_url, response.request.headers, response.status_code, response.headers,
response.text))
if response.status_code != 200 or response.url is None:
return (None, None, None, None, None), False
o = urlparse(response.url)
query = parse_qs(o.query)
html_response = ET.fromstring(response.text, ET.HTMLParser())
if 'sid' not in query:
# No need for second factor authentification, Duo directly returned the authentication cookie
return (None, None, None, None, _js_cookie(html_response)), True
sid = query['sid']
preferred_factor = _preferred_factor(html_response)
preferred_device = _preferred_device(html_response)
u2f_supported = _u2f_supported(html_response)
return (sid, preferred_factor, preferred_device, u2f_supported, None), True
def _js_cookie(html_response):
js_cookie_query = './/input[@name="js_cookie"]'
element = html_response.find(js_cookie_query)
return element is not None and element.get('value') or None
def _preferred_factor(html_response):
preferred_factor_query = './/input[@name="preferred_factor"]'
element = html_response.find(preferred_factor_query)
return element is not None and element.get('value') or None
def _preferred_device(html_response):
preferred_device_query = './/input[@name="preferred_device"]'
element = html_response.find(preferred_device_query)
return element is not None and element.get('value') or None
def _u2f_supported(html_response):
u2f_supported_query = './/input[@name="factor"][@value="U2F Token"]'
elements = html_response.findall(u2f_supported_query)
return len(elements) > 0
def _begin_authentication_transaction(duo_host, sid, preferred_factor, preferred_device, u2f_supported, session,
ssl_verification_enabled):
prompt_for_url = "https://{}/frame/prompt".format(duo_host)
if u2f_supported:
response = session.post(
prompt_for_url,
verify=ssl_verification_enabled,
headers=_headers,
data={
'sid': sid,
'factor': "U2F Token",
'device': 'u2f_token',
'post_auth_action': ''
}
)
else:
click.echo("Triggering authentication method: '{}'".format(preferred_factor), err=True)
response = session.post(
prompt_for_url,
verify=ssl_verification_enabled,
headers=_headers,
data={
'sid': sid,
'factor': preferred_factor,
'device': preferred_device,
'out_of_date': ''
}
)
logging.debug(u'''Request:
* url: {}
* headers: {}
Response:
* status: {}
* headers: {}
* body: {}
'''.format(prompt_for_url, response.request.headers, response.status_code, response.headers,
response.text))
if response.status_code != 200:
raise click.ClickException(
u'Issues during beginning of the authentication process. The error response {}'.format(
response
)
)
json_response = response.json()
if json_response['stat'] != 'OK':
raise click.ClickException(
u'Cannot begin authentication process. The error response: {}'.format(response.text)
)
return json_response['response']['txid']
def _submit_u2f_response(duo_host, sid, u2f_response, session, ssl_verification_enabled):
prompt_for_url = "https://{}/frame/prompt".format(duo_host)
response = session.post(
prompt_for_url,
verify=ssl_verification_enabled,
headers=_headers,
data={
'sid': sid,
'device': 'u2f_token',
'factor': "u2f_finish",
'response_data': json.dumps(u2f_response),
}
)
logging.debug(u'''Request:
* url: {}
* headers: {}
Response:
* status: {}
* headers: {}
* body: {}
'''.format(prompt_for_url, response.request.headers, response.status_code, response.headers,
response.text))
if response.status_code != 200:
raise click.ClickException(
u'Issues during submitting U2F response for the authentication process. The error response {}'.format(
response
)
)
json_response = response.json()
if json_response['stat'] != 'OK':
raise click.ClickException(
u'Cannot complete authentication process. The error response: {}'.format(response.text)
)
return json_response['response']['txid']
_duo_host_pattern = re.compile("'host': '([^']+)'")
def _duo_host(html_response):
try:
duo_host_query = './/form[@id="duo_form"]/following-sibling::script'
element = html_response.xpath(duo_host_query)[0]
m = _duo_host_pattern.search(element.text)
return m.group(1)
except:
duo_host_query = './/input[@name="duo_host"]/@value'
return html_response.xpath(duo_host_query)[0]
_duo_signature_pattern = re.compile("'sig_request': '([^']+)'")
def _duo_request_signature(html_response):
try:
duo_signature_query = './/form[@id="duo_form"]/following-sibling::script'
element = html_response.xpath(duo_signature_query)[0]
m = _duo_signature_pattern.search(element.text)
return m.group(1)
except:
duo_host_query = './/input[@name="duo_sig_request"]/@value'
return html_response.xpath(duo_host_query)[0]
def _action_url_on_validation_success(html_response):
duo_auth_method = './/form[@id="options"]'
element = html_response.find(duo_auth_method)
return element.get('action')