summaryrefslogtreecommitdiffstats
path: root/bin/update-nvd
blob: 6573b9139f9bbb2bd6fc0fbf3f9a8f9dafd50409 (plain) (blame)
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
#!/usr/bin/python3

import os.path
import sys

import setup_paths
import nvd
import security_db

base = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
db_file = os.path.join(base, 'data/security.db')
db = security_db.DB(db_file)

incremental = False
data = []
for name in sys.argv[1:]:
    if name == '-i':
        incremental = True
        continue
    f = open(name)
    data += nvd.parse(f)
    f.close()

# For some reason, NVD adds duplicates, so we need to get rid of them.
# Sort afterwords to increase locality in the insert process.
deduplicate = {}
for x in data:
    deduplicate[x[0]] = x
data = list(deduplicate.values())
data.sort()

cursor = db.writeTxn()
db.updateNVD(cursor, data, incremental)
db.commit(cursor)

© 2014-2024 Faster IT GmbH | imprint | privacy policy