forked from cve-search/cve-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDatabaseLayer.py
485 lines (396 loc) · 15.2 KB
/
DatabaseLayer.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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Database layer translates database calls to functions
#
# Software is free software released under the "GNU Affero General Public License v3.0"
#
# Copyright (c) 2015-2018 Pieter-Jan Moreels - [email protected]
# imports
import ast
import sqlite3
import pymongo
import re
import uuid
from passlib.hash import pbkdf2_sha256
from lib.Config import Configuration as conf
from lib.ProgressBar import progressbar
# Variables
db=conf.getMongoConnection()
colCVE= db['cves']
colCPE= db['cpe']
colCWE= db['cwe']
colCPEOTHER= db['cpeother']
colWHITELIST= db['mgmt_whitelist']
colBLACKLIST= db['mgmt_blacklist']
colUSERS= db['mgmt_users']
colINFO= db['info']
colRANKING= db['ranking']
colVIA4= db['via4']
colCAPEC= db['capec']
colPlugSettings= db['plugin_settings']
colPlugUserSettings=db['plugin_user_settings']
hash_rounds = 8000
salt_size = 10
# Functions
def sanitize(x):
if type(x)==pymongo.cursor.Cursor:
x=list(x)
if type(x)==list:
for y in x: sanitize(y)
if x and "_id" in x: x.pop("_id")
return x
# DB Functions
def ensureIndex(col, field):
db[col].ensure_index(field)
def drop(col):
db[col].drop()
def setColUpdate(collection, date):
colINFO.update({"db": collection}, {"$set": {"last-modified": date}}, upsert=True)
def setColInfo(collection, field, data):
colINFO.update({"db": collection}, {"$set": {field: data}}, upsert=True)
def insertCVE(cve):
colCVE.insert(cve)
def updateCVE(cve):
colCVE.update({"id": cve['id']}, {"$set": {"cvss": cve['cvss'], "summary": cve['summary'], "references": cve['references'],
"cwe": cve['cwe'], "vulnerable_configuration": cve['vulnerable_configuration'],
"vulnerable_configuration_cpe_2_2": cve['vulnerable_configuration_cpe_2_2'], 'last-modified': cve['Modified']}})
def bulkUpdate(collection, data):
if len(data)>0:
bulk=db[collection].initialize_unordered_bulk_op()
for x in data:
bulk.find({'id': x['id']}).upsert().update({'$set': x})
bulk.execute()
def cpeotherBulkInsert(cpeotherlist):
colCPEOTHER.insert(cpeotherlist)
def dropCollection(col):
return db[col].drop()
def getTableNames():
return db.collection_names()
# returns True if 'target_version' is less or equal than
# 'cpe_version'
# returns False otherwise
def target_version_is_included(target_version, cpe_version):
sp_target = target_version.split(".")
sp_cpe = cpe_version.split(".")
if len(sp_target) > len(sp_cpe):
sp_cpe += [0]*(len(sp_target) - len(sp_cpe))
if len(sp_cpe) > len(sp_target):
sp_cpe += [0]*(len(sp_cpe) - len(sp_target))
for i in range(len(sp_target)):
# target version smaller than cpe version
if int(sp_target[i]) < int(sp_cpe[i]):
return True
# target version greater than cpe version
if int(sp_target[i]) > int(sp_cpe[i]):
return False
# target version same version as cpe version
return True
# API Functions
def cvesForCPE(cpe, lax=False, vulnProdSearch=False):
if not cpe: return []
cpe_regex = cpe
final_cves = []
cpe_searchField = "vulnerable_product" if vulnProdSearch else "vulnerable_configuration"
if lax:
# get target version from product description provided by the user
target_version = cpe.split(":")[-1]
product = cpe.rsplit(":", 1)[0]
# perform checks on the target version
if None is target_version or [] is target_version:
print ("Error, target version not found at the end of product description '{}'".format(cpe))
sys.exit(-1)
for i in target_version.split("."):
try:
int(i)
except:
print ("Error, target version should be of the form '1.2.3'. Current form is '{}'".format(target_version))
sys.exit(-1)
# over-approximate versions
final_cves = []
cpe_regex = product
cves = colCVE.find({cpe_searchField: {"$regex": cpe_regex}}).sort("Modified", -1)
i = 0
for cve in cves:
vuln_confs = cve["vulnerable_configuration"]
vuln_confs += cve["vulnerable_configuration_cpe_2_2"]
vuln_confs += cve["vulnerable_product"]
i += 1
for vc in vuln_confs:
if not cpe_regex in vc:
continue
re_from_start = re.compile("^.*{}:".format(cpe_regex))
cpe_version = re_from_start.sub("", vc)
# TODO: handle versions such as "1.1.3:p2"
cpe_version = cpe_version.split(":")[0]
# TODO: handle versions such as "1.1.3p2"
cpe_version = re.search("([0-9\.]*)", cpe_version).group(0)
if len(cpe_version) is 0:
# TODO: print warnings
#print ("Warning, missing cpe version for {}: '{}'. Skipping cpe.".format(cve["id"], vc))
continue
if target_version_is_included(target_version, cpe_version):
final_cves.append(cve)
break
else:
# default strict search
cves = colCVE.find({cpe_searchField: {"$regex": cpe_regex}}).sort("Modified", -1)
final_cves = cves
return sanitize(final_cves)
# User Functions
def addUser(user, pwd, admin=False, localOnly=False):
hashed = pbkdf2_sha256.encrypt(pwd, rounds=hash_rounds, salt_size=salt_size)
entry = {'username':user, 'password':hashed}
if admin: entry['master']= True
if localOnly: entry['local_only']= True
colUSERS.insert(entry)
def changePassword(user, pwd):
hashed = pbkdf2_sha256.encrypt(pwd, rounds=hash_rounds, salt_size=salt_size)
colUSERS.update({'username': user}, {'$set': {'password': hashed}})
def verifyUser(user, pwd):
person = getUser(user)
return (person and pbkdf2_sha256.verify(pwd, person['password']))
def deleteUser(user):
colUSERS.remove({'username': user})
def setAdmin(user, admin=True):
if admin:
colUSERS.update({'username': user}, {'$set': {'master': True}})
else:
colUSERS.update({'username': user}, {'$unset': {'master': ""}})
def setLocalOnly(user, localOnly=True):
if localOnly:
colUSERS.update({'username': user}, {'$set': {'local_only': True}})
else:
colUSERS.update({'username': user}, {'$unset': {'local_only': ""}})
def isMasterAccount(user):
return False if colUSERS.find({"username": user, "master": True}).count() == 0 else True
def userExists(user):
return True if colUSERS.find({"username": user}).count() > 0 else False
def isSingleMaster(user):
return True if len(list(colUSERS.find({"username": {"$ne": user}, "master": True}))) == 0 else False
# Query Functions
# Generic data
def getCVEs(limit=False, query=[], skip=0, cves=None, collection=None):
col=colCVE if not collection else db[collection]
if type(query) == dict: query=[query]
if type(cves) == list: query.append({"id": {"$in": cves}})
if len(query) == 0:
cve=col.find().sort("Modified", -1).limit(limit).skip(skip)
elif len(query) == 1:
cve=col.find(query[0]).sort("Modified", -1).limit(limit).skip(skip)
else:
cve=col.find({"$and": query}).sort("Modified", -1).limit(limit).skip(skip)
return sanitize(cve)
def getCVEsNewerThan(dt):
return sanitize(getCVEs(query={'last-modified': {'$gt': dt}}))
def getCVEIDs(limit=-1):
return [x["id"] for x in colCVE.find().limit(limit).sort("Modified", -1)]
def getCVE(id, collection=None):
col=colCVE if not collection else db[collection]
return sanitize(col.find_one({"id": id}))
def getCPE(id):
return sanitize(colCPE.find_one({"id": id}))
def getCPEs():
return sanitize(colCPE.find())
def getAlternativeCPE(id):
return sanitize(colCPEOTHER.find_one({"id": id}))
def getAlternativeCPEs():
return sanitize(colCPEOTHER.find())
def getVIA4(id):
return sanitize(colVIA4.find_one({'id': id}))
def getCPEMatching(regex, fullSearch=False):
lst=list(colCPE.find({"id": {"$regex": regex}}))
if fullSearch: lst.extend(colCPEOTHER.find({"id": {"$regex": regex}}))
return lst
def getFreeText(text):
try: # Before Mongo 3
return [x["obj"] for x in db.command("text", "cves", search=text)["results"]]
except: # As of Mongo 3
return sanitize(colCVE.find({"$text":{"$search":text}}))
def getSearchResults(search):
result={'data':[]}
regSearch = re.compile(re.escape(search), re.I)
links = {'n': 'Link', 'd': []}
for vLink in getInfo('via4').get('searchables', []):
links['d'].extend(sanitize(colVIA4.find({vLink: {'$in': [regSearch]}})))
try:
textsearch={'n': 'Text search', 'd': getFreeText(search)}
except:
textsearch={'n': 'Text search', 'd': []}
result['errors']=['textsearch']
for collection in [links, textsearch]:
for item in collection['d']:
# Check if already in result data
if not any(item['id']==entry['id'] for entry in result['data']):
entry=getCVE(item['id'])
if entry:
entry['reason']=collection['n']
result['data'].append(entry)
return result
def getCAPECFor(cwe):
return sanitize(colCAPEC.find({'related_weakness': {'$in': [cwe]}}))
def getCAPEC(cweid):
return sanitize(colCAPEC.find_one({'id': cweid}))
def getCWEs():
return sanitize(sorted(colCWE.find(), key=lambda k: int(k['id'])) )
def getInfo(collection):
return sanitize(colINFO.find_one({"db": collection}))
def getLastModified(collection):
info=getInfo(collection)
return info['last-modified'] if info else None
def getSize(collection):
return db[collection].count()
def via4Linked(key, val):
cveList=[x['id'] for x in colVIA4.find({key: val})]
return sanitize(getCVEs(query={'id':{'$in':cveList}}))
def getDBStats(include_admin=False):
data={'cves': {}, 'cpe': {}, 'cpeOther': {}, 'capec': {}, 'cwe': {}, 'via4': {}}
for key in data.keys():
data[key] = {'size': getSize(key.lower()),
'last_update': getLastModified(key.lower())}
if include_admin:
data['whitelist']={'size': colWHITELIST.count()}
data['blacklist']={'size': colBLACKLIST.count()}
data = {'stats': {'size_on_disk': db.command("dbstats")['storageSize'],
'db_size': db.command('dbstats')['dataSize'],
'name': conf.getMongoDB()},
'data': data}
return data
# Dynamic data
def getWhitelist():
return sanitize(colWHITELIST.find())
def isInWhitelist(cpe):
return True if colWHITELIST.find({'id': cpe}).count()>0 else False
def addToWhitelist(cpe, type, comments=None):
if comments:
colWHITELIST.insert({'id': cpe, 'type': type, 'comments': comments})
else:
colWHITELIST.insert({'id': cpe, 'type': type})
def removeFromWhitelist(cpe):
colWHITELIST.remove({'id': cpe})
def updateWhitelist(oldCPE, newCPE, type, comments=None):
if comments:
colWHITELIST.update({'id': oldCPE}, {'id': newCPE, 'type': type, 'comments': comments})
else:
colWHITELIST.update({'id': oldCPE}, {'id': newCPE, 'type': type})
def getBlacklist():
return sanitize(colBLACKLIST.find())
def isInBlacklist(cpe):
return True if colBLACKLIST.find({'id': cpe}).count()>0 else False
def addToBlacklist(cpe, type, comments=None):
if comments:
colBLACKLIST.insert({'id': cpe, 'type': type, 'comments': comments})
else:
colBLACKLIST.insert({'id': cpe, 'type': type})
def removeFromBlacklist(cpe):
colBLACKLIST.remove({'id': cpe})
def updateBlacklist(oldCPE, newCPE, type, comments=None):
if comments:
colBLACKLIST.update({'id': oldCPE}, {'id': newCPE, 'type': type, 'comments': comments})
else:
colBLACKLIST.update({'id': oldCPE}, {'id': newCPE, 'type': type})
def getRules(list):
if list.lower()=='whitelist':
col=colWHITELIST
elif list.lower()=='blacklist':
col=colBLACKLIST
else:
return []
rlist=col.find({'type':'cpe'}).distinct('id')
rlist.extend(["cpe:2.3:([^:]*:){9}"+re.escape(x) for x in col.find({'type':'targethardware'}).distinct('id')])
rlist.extend(["cpe:2.3:([^:]*:){8}"+re.escape(x) for x in col.find({'type':'targetsoftware'}).distinct('id')])
return rlist
def addRanking(cpe, key, rank):
item = findRanking(cpe)
if item is None:
colRANKING.update({'cpe': cpe}, {"$push": {'rank': {key: rank}}}, upsert=True)
else:
l = []
for i in item['rank']:
i[key] = rank
l.append(i)
colRANKING.update({'cpe': cpe}, {"$set": {'rank': l}})
return True
def removeRanking(cpe):
return sanitize(colRANKING.remove({'cpe': {'$regex': cpe}}))
def findRanking(cpe=None, regex=False):
if not cpe:
return sanitize(colRANKING.find())
if regex:
return sanitize(colRANKING.find_one({'cpe': {'$regex': cpe}}))
else:
return sanitize(colRANKING.find_one({'cpe': cpe}))
# Users
def getUsers():
return sanitize(colUSERS.find())
def getUser(user):
return sanitize(colUSERS.find_one({"username": user}))
def getToken(user):
data = sanitize(colUSERS.find_one({"username": user}))
if not data: return None
if 'token' in data.keys():return data['token']
else: return generateToken(user)
def generateToken(user):
token = uuid.uuid4().hex
colUSERS.update({'username': user}, {'$set': {'token': token}})
return token
###########
# Plugins #
###########
# Settings
def p_writeSetting(plugin, setting, value):
colPlugSettings.update({"plugin": plugin}, {"$set": {setting: value}}, upsert=True)
def p_readSetting(plugin, setting):
data = list(colPlugSettings.find({'plugin': plugin}, {setting: 1}).distinct(setting))
if len(data) !=0:
data = data[0]
return data
return None
def p_deleteSettings(plugin):
colPlugSettings.remove({"plugin": plugin})
def p_writeUserSetting(plugin, user, setting, value):
colPlugUserSettings.update({"plugin": plugin, "user":user}, {"$set": {setting: value}}, upsert=True)
def p_readUserSetting(plugin, user, setting):
data = list(colPlugUserSettings.find({'plugin': plugin, 'user': user}, {setting: 1}).distinct(setting))
if len(data) !=0:
data = data[0]
return data
return None
def p_deleteUserSettings(plugin):
colPlugUserSettings.remove({"plugin": plugin})
# Query
def p_queryData(collection, query):
return sanitize(db['plug_%s'%collection].find(query))
def p_queryOne(collection, query):
data = sanitize(db['plug_%s'%collection].find_one(query))
return data if data else [] # Compatibility between several Flask-PyMongo versions
# Data manipulation
def p_drop(col):
db['plug_%s'%col].drop()
def p_addEntry(collection, data):
db['plug_%s'%collection].insert(data)
def p_removeEntry(collection, query):
db['plug_%s'%collection].remove(query)
def p_bulkUpdate(collection, keyword, data):
if type(data) is not list: data = [data]
if len(data)>0:
bulk=db['plug_%s'%collection].initialize_ordered_bulk_op()
for x in data:
bulk.find({keyword: x[keyword]}).upsert().update({'$set': x})
bulk.execute()
def p_addToList(collection, query, listname, data):
if type(data) != list: data=[data]
current = list(p_queryData(collection, query))
if len(current)==0:
p_addEntry(collection, query)
for entry in current:
if listname in entry:
data=list(set([repr(x) for x in data])-set([repr(x) for x in entry[listname]]))
data=[ast.literal_eval(x) for x in data]
if data:
db['plug_%s'%collection].update(query, {"$addToSet": {listname: {"$each": data}}})
def p_removeFromList(collection, query, listname, data):
if type(data) == dict:
db['plug_%s'%collection].update(query, {"$pull": {listname: data}})
elif type(data) != list: data=[data]
db['plug_%s'%collection].update(query, {"$pullAll": {listname: data}})