2019-03-20 10:41:31 +00:00
|
|
|
#!/usr/bin/env python3
|
2018-12-02 01:30:08 +00:00
|
|
|
|
2017-05-15 12:54:22 +00:00
|
|
|
import pyotp
|
|
|
|
import requests
|
|
|
|
import base64
|
|
|
|
import json
|
|
|
|
import sys
|
|
|
|
|
|
|
|
if len(sys.argv) < 2:
|
2019-03-20 10:41:31 +00:00
|
|
|
print("Usage: python duo_bypass.py <url to duo qr>")
|
|
|
|
sys.exit()
|
2017-05-15 12:54:22 +00:00
|
|
|
|
|
|
|
qr_url = sys.argv[1]
|
|
|
|
|
2019-03-19 23:51:29 +00:00
|
|
|
host = 'api-%s' % (qr_url.split('/')[2].split('-')[1],)
|
|
|
|
code = qr_url.rsplit('/',1)[1]
|
|
|
|
|
|
|
|
url = 'https://{host}/push/v2/activation/{code}?customer_protocol=1'.format(host=host, code=code)
|
|
|
|
headers = {'User-Agent': 'okhttp/2.7.5'}
|
|
|
|
data = {'jailbroken': 'false',
|
|
|
|
'architecture': 'armv7',
|
|
|
|
'region': 'US',
|
|
|
|
'app_id': 'com.duosecurity.duomobile',
|
|
|
|
'full_disk_encryption': 'true',
|
|
|
|
'passcode_status': 'true',
|
|
|
|
'platform': 'Android',
|
|
|
|
'app_version': '3.23.0',
|
|
|
|
'app_build_number': '323001',
|
|
|
|
'version': '8.1',
|
|
|
|
'manufacturer': 'unknown',
|
|
|
|
'language': 'en',
|
|
|
|
'model': 'Pixel C',
|
|
|
|
'security_patch_level': '2018-12-01'}
|
|
|
|
|
|
|
|
r = requests.post(url, headers=headers, data=data)
|
2017-05-15 12:54:22 +00:00
|
|
|
response = json.loads(r.text)
|
|
|
|
|
2019-03-19 23:51:29 +00:00
|
|
|
try:
|
|
|
|
secret = base64.b32encode(response['response']['hotp_secret'])
|
|
|
|
except KeyError:
|
2019-03-20 10:41:31 +00:00
|
|
|
print(response)
|
2019-03-19 23:51:29 +00:00
|
|
|
sys.exit(1)
|
2017-05-15 12:54:22 +00:00
|
|
|
|
2019-03-20 10:41:31 +00:00
|
|
|
print("secret", secret)
|
2018-12-02 01:30:08 +00:00
|
|
|
|
2019-03-20 10:41:31 +00:00
|
|
|
print("10 Next OneTime Passwords!")
|
2017-05-15 12:54:22 +00:00
|
|
|
# Generate 10 Otps!
|
|
|
|
hotp = pyotp.HOTP(secret)
|
|
|
|
for _ in xrange(10):
|
2019-03-20 10:41:31 +00:00
|
|
|
print(hotp.at(_))
|
2018-12-02 01:30:08 +00:00
|
|
|
|
|
|
|
f = open('duotoken.hotp', 'w')
|
|
|
|
f.write(secret + "\n")
|
|
|
|
f.write("0")
|
|
|
|
f.close()
|
|
|
|
|
2019-03-19 23:51:29 +00:00
|
|
|
with open('response.json', 'w') as resp:
|
|
|
|
resp.write(r.text)
|
|
|
|
|