forked from relokin/juniper-vpn-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
juniper-vpn.py
executable file
·411 lines (356 loc) · 14.7 KB
/
juniper-vpn.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
#!/usr/bin/python
# -*- coding: utf-8 -*-
import subprocess
import mechanize
import cookielib
import getpass
import sys
import os
import ssl
import argparse
import atexit
import signal
import ConfigParser
import time
import binascii
import hmac
import hashlib
import shlex
import tncc
import platform
import socket
import netifaces
import datetime
import re
import errno
debug = False
ssl._create_default_https_context = ssl._create_unverified_context
"""
OATH code from https://github.com/bdauvergne/python-oath
Copyright 2010, Benjamin Dauvergne
* All rights reserved.
* Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.'''
"""
def truncated_value(h):
bytes = map(ord, h)
offset = bytes[-1] & 0xf
v = (bytes[offset] & 0x7f) << 24 | (bytes[offset+1] & 0xff) << 16 | \
(bytes[offset+2] & 0xff) << 8 | (bytes[offset+3] & 0xff)
return v
def dec(h,p):
v = truncated_value(h)
v = v % (10**p)
return '%0*d' % (p, v)
def int2beint64(i):
hex_counter = hex(long(i))[2:-1]
hex_counter = '0' * (16 - len(hex_counter)) + hex_counter
bin_counter = binascii.unhexlify(hex_counter)
return bin_counter
def hotp(key):
key = binascii.unhexlify(key)
counter = int2beint64(int(time.time()) / 30)
return dec(hmac.new(key, counter, hashlib.sha256).digest(), 6)
class juniper_vpn(object):
def __init__(self, args):
self.args = args
self.fixed_password = args.password is not None
self.last_connect = 0
if args.enable_funk:
if not args.platform:
args.platform = platform.system() + ' ' + platform.release()
if not args.hostname:
args.hostname = socket.gethostname()
if not args.hwaddr:
args.hwaddr = []
for iface in netifaces.interfaces():
try:
mac = netifaces.ifaddresses(iface)[netifaces.AF_LINK][0]['addr']
assert mac != '00:00:00:00:00:00'
args.hwaddr.append(mac)
except:
pass
else:
args.hwaddr = [n.strip() for n in args.hwaddr.split(',')]
certs = []
if args.certs:
now = datetime.datetime.now()
for f in args.certs.split(','):
cert = tncc.x509cert(f.strip())
if now < cert.not_before:
print 'WARNING: %s is not yet valid' % f
if now > cert.not_after:
print 'WARNING: %s is expired' % f
certs.append(cert)
args.certs = [n.strip() for n in args.certs.split(',')]
args.certs = certs
self.br = mechanize.Browser()
self.cj = cookielib.LWPCookieJar()
self.br.set_cookiejar(self.cj)
# Browser options
self.br.set_handle_equiv(True)
self.br.set_handle_redirect(True)
self.br.set_handle_referer(True)
self.br.set_handle_robots(False)
# Follows refresh 0 but not hangs on refresh > 0
self.br.set_handle_refresh(mechanize._http.HTTPRefreshProcessor(),
max_time=1)
# Want debugging messages?
if debug:
self.br.set_debug_http(True)
self.br.set_debug_redirects(True)
self.br.set_debug_responses(True)
if args.user_agent:
self.user_agent = args.user_agent
else:
self.user_agent = 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.1) Gecko/2008071615 Fedora/3.0.1-1.fc9 Firefox/3.0.1'
self.br.addheaders = [('User-agent', self.user_agent)]
self.last_action = None
self.needs_2factor = False
self.key = None
self.pass_postfix = None
def find_cookie(self, name):
for cookie in self.cj:
if cookie.name == name:
return cookie
return None
def next_action(self):
if self.find_cookie('DSID'):
return 'connect'
for form in self.br.forms():
if form.name == 'frmLogin':
return 'login'
elif form.name == 'frmDefender':
return 'key'
elif form.name == 'frmConfirmation':
return 'continue'
else:
raise Exception('Unknown form type:', form.name)
return 'tncc'
def run(self):
# Open landing page
self.r = self.br.open('https://' + self.args.host)
while True:
action = self.next_action()
if action == 'tncc':
self.action_tncc()
elif action == 'login':
self.action_login()
elif action == 'key':
self.action_key()
elif action == 'continue':
self.action_continue()
elif action == 'connect':
self.action_connect()
self.last_action = action
def action_tncc(self):
# Run tncc host checker
dspreauth_cookie = self.find_cookie('DSPREAUTH')
if dspreauth_cookie is None:
raise Exception('Could not find DSPREAUTH key for host checker')
dssignin_cookie = self.find_cookie('DSSIGNIN')
t = tncc.tncc(self.args.host, args.device_id, args.enable_funk,
args.platform, args.hostname, args.hwaddr, args.certs);
self.cj.set_cookie(t.get_cookie(dspreauth_cookie, dssignin_cookie))
self.r = self.br.open(self.r.geturl())
def action_login(self):
# The token used for two-factor is selected when this form is submitted.
# If we aren't getting a password, then get the key now, otherwise
# we could be sitting on the two factor key prompt later on waiting
# on the user.
if self.args.password is None or self.last_action == 'login':
if self.fixed_password:
print 'Login failed (Invalid username or password?)'
sys.exit(1)
else:
self.args.password = getpass.getpass('Password:')
self.needs_2factor = False
if self.args.pass_prefix:
self.pass_postfix = getpass.getpass("Secondary password postfix:")
if self.needs_2factor:
if self.args.oath:
self.key = hotp(self.args.oath)
else:
self.key = getpass.getpass('Two-factor key:')
else:
self.key = None
# Enter username/password
self.br.select_form(nr=0)
self.br.form['username'] = self.args.username
self.br.form['password'] = self.args.password
if self.args.pass_prefix:
if self.pass_postfix:
secondary_password = "".join([ self.args.pass_prefix,
self.pass_postfix])
else:
print 'Secondary password postfix not provided'
sys.exit(1)
self.br.form['password#2'] = secondary_password
if self.args.realm:
self.br.form['realm'] = [self.args.realm]
self.r = self.br.submit()
def action_key(self):
# Enter key
self.needs_2factor = True
if self.args.oath:
if self.last_action == 'key':
print 'Login failed (Invalid OATH key)'
sys.exit(1)
self.key = hotp(self.args.oath)
elif self.key is None:
self.key = getpass.getpass('Two-factor key:')
self.br.select_form(nr=0)
self.br.form['password'] = self.key
self.key = None
self.r = self.br.submit()
def action_continue(self):
# The Juniper VPN has HTML syntax errors that keep the
# mechanize parser from being able to properly parse the html
# So we pull the HTML, fix the one critical error, and
# recreate the request
update_response = self.br.response()
html = update_response.get_data().replace(
'<td><input id="postfixSID_1" type="checkbox" '
'onclick="checkSelected()", name="postfixSID"',
'<td><input id="postfixSID_1" type="checkbox" '
'onclick="checkSelected()" name="postfixSID"')
headers=re.findall(r"(?P<name>.*?): (?P<value>.*?)\r\n",
str(update_response.info()))
response = mechanize.make_response(html, headers,
update_response.geturl(),
update_response.code,
update_response.msg)
self.r = response
self.br.set_response(response)
# sometimes only one connection can be active at a time,
# force log out other sessions. Find the checkbox, click it
# then remove the disable from the submit button
self.br.select_form(nr=0)
print "Terminating existing session!"
check_box_control = self.br.find_control(name='postfixSID')
close_selected_session = self.br.find_control(name='btnContinue')
# flip the selection on
for item in check_box_control.items:
item.selected = True
# remove disabled from close sessions
close_selected_session.disabled = False
# now submit correct button
self.r = self.br.submit(name='btnContinue')
def action_connect(self):
now = time.time()
delay = 10.0 - (now - self.last_connect)
if delay > 0:
print 'Waiting %.0f...' % (delay)
time.sleep(delay)
self.last_connect = time.time();
dsid = self.find_cookie('DSID').value
action = []
for arg in self.args.action:
arg = arg.replace('%DSID%', dsid).replace('%HOST%', self.args.host)
action.append(arg)
try:
if args.stdin is not None:
self.cprocess = subprocess.Popen(action, stdin=subprocess.PIPE)
stdin = args.stdin.replace('%DSID%', dsid)
stdin = stdin.replace('%HOST%', self.args.host)
self.cprocess.communicate(input=stdin)
else:
self.cprocess = subprocess.Popen(action)
ret = self.cprocess.wait()
except OSError as e:
if e.errno == errno.ENOENT:
print >> sys.stderr, 'binary %s not found' % action[0]
raise
ret = self.cprocess.returncode
# Openconnect specific
if ret == 2:
self.cj.clear(self.args.host, '/', 'DSID')
self.r = self.br.open(self.r.geturl())
def cleanup(self):
try:
print 'Disconnecting'
if hasattr(self, "cprocess"):
self.cprocess.send_signal(signal.SIGINT)
except OSError:
pass
def handler(signum, frame):
sys.exit(0)
if __name__ == "__main__":
parser = argparse.ArgumentParser(conflict_handler='resolve')
parser.add_argument('-h', '--host', type=str,
help='VPN host name')
parser.add_argument('-r', '--realm', type=str,
help='VPN realm')
parser.add_argument('-u', '--username', type=str,
help='User name')
parser.add_argument('-p', '--pass_prefix', type=str,
help="Secondary password prefix")
parser.add_argument('-o', '--oath', type=str,
help='OATH key for two factor authentication (hex)')
parser.add_argument('-c', '--config', type=str,
default=os.path.expanduser('~/.juniper-vpn.conf'),
help='Config file')
parser.add_argument('-s', '--stdin', type=str,
help="String to pass to action's stdin")
parser.add_argument('-d', '--device-id', type=str,
help="Hex device ID")
parser.add_argument('-f', '--enable-funk', action='store_true',
help="Request funk message")
parser.add_argument('-H', '--hostname', type=str,
help="Hostname to pass with funk request")
parser.add_argument('-p', '--platform', type=str,
help="Platform type to pass with funk request")
parser.add_argument('-a', '--hwaddr', type=str,
help="Comma separated list of hwaddrs to pass with funk request")
parser.add_argument('-C', '--certs', type=str,
help="Comma separated list of pem formatted certificates for funk response")
parser.add_argument('-U', '--user-agent', type=str,
help="User agent string")
parser.add_argument('action', nargs=argparse.REMAINDER,
metavar='<action> [<args...>]',
help='External command')
args = parser.parse_args()
args.__dict__['password'] = None
if len(args.action) and args.action[0] == '--':
args.action = args.action[1:]
if not len(args.action):
args.action = None
if os.path.isfile(args.config):
config = ConfigParser.RawConfigParser()
config.read(args.config)
for arg in ['username', 'host', 'password', 'oath', 'action', 'stdin',
'hostname', 'platform', 'hwaddr', 'certs', 'device_id',
'user_agent', 'pass_prefix', 'realm']:
if args.__dict__[arg] is None:
try:
args.__dict__[arg] = config.get('vpn', arg)
except:
pass
if not args.enable_funk:
try:
val = config.get('vpn', 'enable_funk').lower()
if val in ['true', '1', 'yes', 'enable', 'on']:
val = True
elif val in ['false', '0', 'no', 'disable', 'off']:
val = False
else:
raise Exception("Unable to parse funk argument", val)
args.enable_funk = val
except:
pass
if args.action is None:
args.action = []
elif not isinstance(args.action, list):
args.action = shlex.split(args.action)
if args.username == None or args.host == None or args.action == []:
print "--user, --host, and <action> are required parameters"
sys.exit(1)
signal.signal(signal.SIGINT, handler)
jvpn = juniper_vpn(args)
atexit.register(jvpn.cleanup)
jvpn.run()