From 086f92a61786d8e4a1d4ef49b442ca0751a40cee Mon Sep 17 00:00:00 2001 From: Nick Johns Date: Fri, 29 Jun 2018 15:32:00 +0100 Subject: [PATCH] /ext/vulnmdsrc/nvd Switched NVD URLs to https NVD Stopped serving traffic on http endpoints. Updated to https Fixes #515 --- ext/vulnmdsrc/nvd/nvd.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/vulnmdsrc/nvd/nvd.go b/ext/vulnmdsrc/nvd/nvd.go index 5be08b97..602c6db0 100644 --- a/ext/vulnmdsrc/nvd/nvd.go +++ b/ext/vulnmdsrc/nvd/nvd.go @@ -38,8 +38,8 @@ import ( ) const ( - dataFeedURL string = "http://static.nvd.nist.gov/feeds/xml/cve/nvdcve-2.0-%s.xml.gz" - dataFeedMetaURL string = "http://static.nvd.nist.gov/feeds/xml/cve/nvdcve-2.0-%s.meta" + dataFeedURL string = "https://static.nvd.nist.gov/feeds/xml/cve/nvdcve-2.0-%s.xml.gz" + dataFeedMetaURL string = "https://static.nvd.nist.gov/feeds/xml/cve/nvdcve-2.0-%s.meta" appenderName string = "NVD"