-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpki_web.py
586 lines (443 loc) · 19.6 KB
/
pki_web.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
__author__ = 'turbotankist'
from datetime import date
from validate import Validator
from configobj import ConfigObj
from web.wsgiserver import CherryPyWSGIServer
from core.openssl_ca import run_cmd, run_cmd_pexpect, generate_password, opensslconfigfileparser, generate_certificate
from core.openssl_ca import pki_init, is_init, is_csr
from core.forms import config_form, usercert_form, servercert_form, bulkcert_form, revoke_form, report_form, init_form
import os
import re
import sys
import web
import time
import base64
import core.users
#===============================================================================
# Init, things we cannot live without
#===============================================================================
# SSL
CherryPyWSGIServer.ssl_certificate = "pkiweb.crt"
CherryPyWSGIServer.ssl_private_key = "pkiweb.key"
# Declare URLs we will serve files for
urls = ('/', 'Home',
'/home', 'Home',
'/config', 'Config',
'/generatecertificate', 'GenerateCertificate',
'/clientcertificate', 'ClientCertificate',
'/servercertificate', 'ServerCertificate',
'/bulk', 'Bulk',
'/revoke', 'Revoke',
'/crl', 'Crl',
'/report', 'Report',
'/login', 'Login',
'/progress', 'Progress',
'/init', 'PKIinit')
render = web.template.render('templates/')
app = web.application(urls, globals())
# Read configuration file
configfile = ConfigObj('config/pki.cfg', configspec='config/pkispec.cfg')
# Validate configuration file
validator = Validator()
valid = configfile.validate(validator)
# Exit in case of troubles
if not valid:
raise Exception('Config file validation failed, exiting application', configfile, validator)
sys.exit(1)
config = {'pkiroot': configfile['pkiroot'],
'opensslconfigfile': configfile['opensslconfigfile'],
'canames': configfile['canames'],
'cwdir': os.getcwd(),
'download_dir': './static'}
ca_list, defaultcsr = opensslconfigfileparser(config['opensslconfigfile'], config['canames'])
bulk_progress = 0
version = '1.1'
#===============================================================================
# Functions required for the web interface to work
#===============================================================================
def create_zip(sources, destination, encrypt=False, password=''):
sources = ' '.join(sources)
if encrypt:
cmd = 'zip -ejr {destination} {sources}'.format(sources=sources, destination=destination)
run_cmd_pexpect(cmd, (('Enter password:', password), ('Verify password:', password)))
else:
cmd = 'zip -jr {destination} {sources}'.format(sources=sources, destination=destination)
run_cmd(cmd)
def prepare_crt_for_download(crt_list):
# Create list of all required p12, pwd and crt files to be included in the encrypted zip container
zip_contents = []
for crt in crt_list:
zip_contents.append(crt.p12file)
zip_contents.append(crt.p12pwdfile)
zip_contents.append(crt.crtfile)
# Create encrypted zip
zipfile = os.path.join(config['download_dir'], 'crt_{date_time}.zip').format(date_time=time.strftime("%d_%m_%Y-%H%M%S"))
password = generate_password(12)
create_zip(zip_contents, zipfile, encrypt=True, password=password)
return zipfile, password
def prepare_files_for_download(file_list):
# Prepare file list for zip container
zip_contents = []
for file in file_list:
zip_contents.append(file)
# Create zip file
zipfile = os.path.join(config['download_dir'], 'crl_{date_time}.zip').format(date_time=time.strftime("%d_%m_%Y-%H%M%S"))
create_zip(zip_contents, zipfile)
return zipfile
def report_certificates_to_expire(calist, caname, period):
# Select proper ca object and request list of certificates
ca = [c for c in calist if c.name == caname][0]
cert_list = ca.list_db()
expiration_list = []
# Determine current date
today = date.today()
# Validate if certificate is valid and will expire within provided period
for cert_information in cert_list:
delta = cert_information['expiration_date'] - today
if delta.days <= int(period) and cert_information['status'] == 'V':
expiration_list.append(cert_information)
return expiration_list
def csv_to_csr_data(csv, cert_type='Server'):
csr_data_list = []
# Split lines on newline character
lines = csv.split('\n')
# Treat each line and create the csr_data
for line in lines:
values = line.split(',')
if cert_type == 'Server':
csr_data = {'certtype': cert_type,
'commonname': values[0],
'validity': values[1],
'country': defaultcsr.country,
'state': defaultcsr.state,
'locality': defaultcsr.locality,
'organisation': defaultcsr.organisation,
'organisationalunit': defaultcsr.organisationalunit}
else:
csr_data = {'certtype': cert_type,
'country': values[0],
'state': values[1],
'locality': values[2],
'organisation': values[3],
'organisationalunit': values[4],
'commonname': values[5],
'email': values[6],
'validity': values[7] or 365}
csr_data_list.append(csr_data)
return csr_data_list
def authentication():
if web.ctx.path != '/login':
if web.ctx.env.get('HTTP_AUTHORIZATION') is not None:
pass
else:
raise web.seeother('/login')
#===============================================================================
# Web interface URI's
#===============================================================================
class Login(object):
def GET(self):
auth = web.ctx.env.get('HTTP_AUTHORIZATION')
authreq = False
if auth is None:
authreq = True
else:
auth = re.sub('^Basic ', '', auth)
username,password = base64.decodestring(auth).split(':')
if (username, password) in core.users.allowed:
if not is_init():
raise web.seeother('/init')
else: raise web.seeother('/home')
else:
authreq = True
if authreq:
web.header('WWW-Authenticate','Basic realm="PKIweb authentication"')
web.ctx.status = '401 Unauthorized'
return
class Home(object):
def GET(self):
if web.ctx.env.get('HTTP_AUTHORIZATION') is not None:
return render.home(version)
else:
raise web.seeother('/login')
class PKIinit(object):
def __init__(self):
if is_init():
self.current = 'Caution! There is rootCA already.<br/>This will clear old one!'
else: self.current = "Create new RootCA"
def GET(self):
form = init_form()
return render.init(form, version, self.current)
def POST(self):
form = init_form()
data = web.input()
if not form.validates():
return render.init(form, version, self.current)
if data['password'] != data['password_v']:
return render.error("Passwords do not match", version)
#return render.init(form, version, self.current+' <br/> Passwords do not match')
try:
pki_init("pki", data['password'],data['company'],data['cn'])
except Exception as e:
return render.error(e, version)
return render.home(version)
class Config(object):
def GET(self):
if web.ctx.env.get('HTTP_AUTHORIZATION') is not None:
form = config_form()
# Set current values on form
form.pkiroot.value = config['pkiroot']
form.opensslconfigfile.value = config['opensslconfigfile']
form.canames.value = ','.join(config['canames'])
return render.configuration(form, version)
else:
raise web.seeother('/login')
def POST(self):
if web.ctx.env.get('HTTP_AUTHORIZATION') is not None:
form = config_form()
if not form.validates():
return render.configuration(form, version)
# Update configuration
config['pkiroot'] = configfile['pkiroot'] = form.pkiroot.value
config['opensslconfigfile'] = configfile['opensslconfigfile'] = form.opensslconfigfile.value
config['canames'] = configfile['canames'] = form.canames.value.split(',')
# Write configuration to disk
configfile.write()
return render.configuration(form, version)
else:
raise web.seeother('/login')
class GenerateCertificate(object):
def GET(self):
if web.ctx.env.get('HTTP_AUTHORIZATION') is not None:
return render.generatecertificate(version)
else:
raise web.seeother('/login')
class ClientCertificate(object):
def GET(self):
if web.ctx.env.get('HTTP_AUTHORIZATION') is not None:
form = usercert_form()
# Set values based on default CSR
form.selected_ca.args = [ca.name for ca in ca_list]
form.country.value = defaultcsr.country
form.state.value = defaultcsr.state
form.locality.value = defaultcsr.locality
form.organisation.value = defaultcsr.organisation
form.organisationalunit.value = defaultcsr.organisationalunit
form.validity.value = 365
return render.form(form)
else:
raise web.seeother('/login')
def POST(self):
if web.ctx.env.get('HTTP_AUTHORIZATION') is not None:
form = usercert_form()
data = web.input()
if not form.validates():
# Set values based on default CSR
form.selected_ca.args = [ca.name for ca in ca_list]
form.country.value = defaultcsr.country
form.state.value = defaultcsr.state
form.locality.value = defaultcsr.locality
form.organisation.value = defaultcsr.organisation
form.organisationalunit.value = defaultcsr.organisationalunit
form.validity.value = 365
return render.generatecertificate_err(form, version)
# Prepare csr data based on form input
csr_data = {'certtype': data['certtype'],
'keylength': 2048,
'validity': data['validity'],
'country': data['country'],
'state': data['state'],
'locality': data['locality'],
'organisation': data['organisation'],
'organisationalunit': data['organisationalunit'],
'commonname': data['commonname'],
'email': data['email']}
try:
# Generate certificate based on CSR
crt = generate_certificate(csr_data, ca_list, data['selected_ca'], data['password'])
except Exception as e:
return render.error(e, version)
# Prepare certificate for download
crt_list = [crt, ]
zipfile, password = prepare_crt_for_download(crt_list)
return render.download(crt_list, zipfile, password, version)
else:
raise web.seeother('/login')
class ServerCertificate(object):
def GET(self):
if web.ctx.env.get('HTTP_AUTHORIZATION') is not None:
form = servercert_form()
# Set values based on default CSR
form.selected_ca.args = [ca.name for ca in ca_list]
form.country.value = defaultcsr.country
form.state.value = defaultcsr.state
form.locality.value = defaultcsr.locality
form.organisation.value = defaultcsr.organisation
form.organisationalunit.value = defaultcsr.organisationalunit
form.validity.value = 365
return render.form(form)
else:
raise web.seeother('/login')
def POST(self):
if web.ctx.env.get('HTTP_AUTHORIZATION') is not None:
form = servercert_form()
data = web.input()
if not form.validates():
# Set values based on default CSR
form.selected_ca.args = [ca.name for ca in ca_list]
form.country.value = defaultcsr.country
form.state.value = defaultcsr.state
form.locality.value = defaultcsr.locality
form.organisation.value = defaultcsr.organisation
form.organisationalunit.value = defaultcsr.organisationalunit
form.validity.value = 365
return render.generatecertificate_err(form, version)
# Prepare csr data based on form input
csr_data = {'certtype': data['certtype'],
'keylength': 2048,
'validity': data['validity'],
'country': data['country'],
'state': data['state'],
'locality': data['locality'],
'organisation': data['organisation'],
'organisationalunit': data['organisationalunit'],
'commonname': data['commonname']}
try:
# Generate certificate based on CSR
crt = generate_certificate(csr_data, ca_list, data['selected_ca'], data['password'])
except Exception as e:
return render.error(e, version)
# Prepare certificate for download
crt_list = [crt, ]
zipfile, password = prepare_crt_for_download(crt_list)
return render.download(crt_list, zipfile, password, version)
else:
raise web.seeother('/login')
class Bulk(object):
def GET(self):
if web.ctx.env.get('HTTP_AUTHORIZATION') is not None:
form = bulkcert_form()
# Set values of CA's
form.selected_ca.args = [ca.name for ca in ca_list]
return render.form(form)
else:
raise web.seeother('/login')
def POST(self):
if web.ctx.env.get('HTTP_AUTHORIZATION') is not None:
global bulk_progress
form = bulkcert_form()
data = web.input()
if not form.validates():
# Set values of CA's
form.selected_ca.args = [ca.name for ca in ca_list]
return render.generatecertificate_err(form, version)
crt_list = []
csr_file, csr_data = is_csr(data['req_list'])
if csr_file:
try:
csr_data['commonname'] = csr_data.pop('CN')
csr_data['country'] = csr_data.pop('C')
csr_data['organisation'] = csr_data.pop('O','nor used')
csr_data['organisation'] = csr_data.pop('O','nor used')
csr_data['certtype'] = data['certtype']
csr_data['email'] = csr_data.pop('emailAddress','nor used')
crt = generate_certificate(csr_data, ca_list, data['selected_ca'], data['password'],csr_file=data['req_list'])
crt_list.append(crt)
except Exception as e:
return render.error(e, version)
else:
try:
csr_data_list = csv_to_csr_data(data['req_list'], cert_type=data['certtype'])
except:
return render.error("pls, give a csr or bulk request file", version)
for csr_data in csr_data_list:
try:
crt = generate_certificate(csr_data, ca_list, data['selected_ca'], data['password'])
bulk_progress += 100/len(csr_data_list)
except Exception as e:
return render.error(e, version)
crt_list.append(crt)
zipfile, password = prepare_crt_for_download(crt_list)
bulk_progress = 0
return render.download(crt_list, zipfile, password, version)
else:
raise web.seeother('/login')
class Revoke(object):
def GET(self):
if web.ctx.env.get('HTTP_AUTHORIZATION') is not None:
if not web.input():
# Initial request
form = revoke_form()
form.selected_ca.args = ['', ] + [ca.name for ca in ca_list]
return render.revoke(form, version)
if web.input()['request'] == 'getlist':
ca = [c for c in ca_list if c.name == web.input()['ca']][0]
cert_list = ca.list_db()
rev_list = [cert for cert in cert_list if cert['status'] == 'V']
return render.revoke_list(rev_list)
else:
raise web.seeother('/login')
def POST(self):
if web.ctx.env.get('HTTP_AUTHORIZATION') is not None:
data = web.input()
form = revoke_form()
if not form.validates():
form.selected_ca.args = ['', ] + [ca.name for ca in ca_list]
return render.revoke(form, version)
# Decide on CA
ca = [c for c in ca_list if c.name == web.input()['selected_ca']][0]
for key, value in data.iteritems():
if value == 'R':
try:
ca.revoke_cert(key, data['password'])
except Exception as e:
return render.error(e, version)
form = revoke_form()
form.selected_ca.args = ['', ] + [ca.name for ca in ca_list]
return render.revoke(form, version)
else:
raise web.seeother('/login')
class Crl(object):
def GET(self):
if web.ctx.env.get('HTTP_AUTHORIZATION') is not None:
# Decide on CA to generate CRL for
ca = [c for c in ca_list if c.name == web.input()['ca']][0]
# Generate CRL and get output
try:
crl_pem, crl_txt = ca.generate_crl(web.input()['password'])
except Exception as e:
return render.error(e, version)
# Prepare zip file for download
file_list = (crl_pem, crl_txt)
crl = prepare_files_for_download(file_list)
# Serve zip file for download
web.redirect(crl)
else:
raise web.seeother('/login')
class Report(object):
def GET(self):
if web.ctx.env.get('HTTP_AUTHORIZATION') is not None:
if not web.input():
# Initial request
form = report_form()
form.selected_ca.args = ['', ] + [ca.name for ca in ca_list]
return render.report(form, version)
if web.input()['request'] == 'getlist':
report = report_certificates_to_expire(ca_list, web.input()['ca'], web.input()['period'])
return render.report_list(report)
else:
raise web.seeother('/login')
class Progress(object):
def GET(self):
if web.input():
return bulk_progress
#===============================================================================
# Main
#===============================================================================
def main():
web.config.debug = True
# Start the web application
web.internalerror = web.debugerror
app.add_processor(web.loadhook(authentication))
app.run()
if __name__ == '__main__':
main()