Commit 22d57134 authored by PidgeyL's avatar PidgeyL
Browse files

Remove vendor statements, as they are in VIA4

parent bbd99b2a
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -89,7 +89,6 @@ The MongoDB database is called cvedb and there are 11 collections:

* cves (Common Vulnerabilities and Exposure items) - source NVD NIST
* cpe (Common Platform Enumeration items) - source NVD NIST
* vendor (Official Vendor Statements on CVE Vulnerabilities) - source NVD NIST
* cwe (Common Weakness Enumeration items) - source NVD NIST
* capec (Common Attack Pattern Enumeration and Classification) - source NVD NIST
* ranking (ranking rules per group) - local cve-search
+0 −1
Original line number Diff line number Diff line
@@ -25,7 +25,6 @@
      <tr><td>cpeother</td> <td>CVE-Search</td> <td>CVE-Search has a script to fill this database, using the original CPE's and generating titles for them.</td></tr>
      <tr><td>cwe</td> <td>NVD NIST</td> <td>Information about Common Weaknesses, as published by NIST</td></tr>
      <tr><td>d2sec</td> <td>d2sec.com</td> <td>Information about CVE's, as released by d2sec</td></tr>
      <tr><td>vendor</td> <td>NVD NIST</td> <td>Vendor statements, released by NIST</td></tr>
      <tr><td>info</td> <td>CVE-Search</td> <td>Information about the Mongo Database updates.</td></tr>
    </table>
    <br />
+0 −1
Original line number Diff line number Diff line
@@ -15,7 +15,6 @@ By default, these are the official sources.
| cpeother   | CVE-Search | CVE-Search has a script to fill this database, using the original CPE's and generating titles for them. |
| cwe        | NVD NIST   | Information about Common Weaknesses, as published by NIST |
| d2sec      | d2sec.com  | Information about CVE's, as released by d2sec |
| vendor     | NVD NIST   | Vendor statements, released by NIST |
| info       | CVE-Search | Information about the Mongo Database updates. |

**These are the management collections:**
+0 −1
Original line number Diff line number Diff line
@@ -2,6 +2,5 @@
CVE:    https://static.nvd.nist.gov/feeds/xml/cve/
CPE:    https://static.nvd.nist.gov/feeds/xml/cpe/dictionary/official-cpe-dictionary_v2.2.xml.zip
CWE:    http://cwe.mitre.org/data/xml/cwec_v2.8.xml.zip
Vendor: https://nvd.nist.gov/download/vendorstatements.xml.gz
CAPEC:  http://capec.mitre.org/data/xml/capec_v2.6.xml
VIA4:   http://www.cve-search.org/feeds/via4.json
+1 −3
Original line number Diff line number Diff line
@@ -53,12 +53,10 @@ class Configuration():
    sources={'cve':        "https://static.nvd.nist.gov/feeds/xml/cve/",
             'cpe':        "https://static.nvd.nist.gov/feeds/xml/cpe/dictionary/official-cpe-dictionary_v2.2.xml",
             'cwe':        "http://cwe.mitre.org/data/xml/cwec_v2.8.xml.zip",
             'vendor':     "https://nvd.nist.gov/download/vendorstatements.xml.gz",
             'capec':      "http://capec.mitre.org/data/xml/capec_v2.6.xml",
             'via4':       "http://www.cve-search.org/feeds/via4.json",
             'includecve': True, 'includecapec':  True, 'includemsbulletin': True,
             'includecpe': True, 'includecwe':    True, 'includevendor':     True, 
             'includevia4': True}
             'includecpe': True, 'includecwe':    True, 'includevia4':       True}

    @classmethod
    def readSetting(cls, section, item, default):
Loading