|
@@ -1125,7 +1125,7 @@ def parse_args():
|
|
parser.add_argument('--nvd-path', dest='nvd_path',
|
|
parser.add_argument('--nvd-path', dest='nvd_path',
|
|
help='Path to the local NVD database', type=resolvepath)
|
|
help='Path to the local NVD database', type=resolvepath)
|
|
parser.add_argument('--disable', type=list_str,
|
|
parser.add_argument('--disable', type=list_str,
|
|
- help='Features to disable, comma-separated (cve, upstream, url)',
|
|
|
|
|
|
+ help='Features to disable, comma-separated (cve, upstream, url, cpe)',
|
|
default=[])
|
|
default=[])
|
|
args = parser.parse_args()
|
|
args = parser.parse_args()
|
|
if not args.html and not args.json:
|
|
if not args.html and not args.json:
|
|
@@ -1184,6 +1184,8 @@ def __main__():
|
|
if "cve" not in args.disable and args.nvd_path:
|
|
if "cve" not in args.disable and args.nvd_path:
|
|
print("Checking packages CVEs")
|
|
print("Checking packages CVEs")
|
|
check_package_cves(args.nvd_path, packages)
|
|
check_package_cves(args.nvd_path, packages)
|
|
|
|
+ if "cpe" not in args.disable and args.nvd_path:
|
|
|
|
+ print("Checking packages CPEs")
|
|
check_package_cpes(args.nvd_path, packages)
|
|
check_package_cpes(args.nvd_path, packages)
|
|
print("Calculate stats")
|
|
print("Calculate stats")
|
|
stats = calculate_stats(packages)
|
|
stats = calculate_stats(packages)
|