added property to solve issue #500

This commit is contained in:
Jeremy Long
2016-06-18 07:32:57 -04:00
parent 9be91474f6
commit 35cc14815e
3 changed files with 14 additions and 1 deletions

View File

@@ -99,6 +99,13 @@ public final class Settings {
* The database schema version.
*/
public static final String DB_VERSION = "data.version";
/**
* The starts with filter used to exclude CVE entries from the database.
* By default this is set to 'cpe:/a:' which limits the CVEs imported to
* just those that are related to applications. If this were set to just
* 'cpe:' the OS, hardware, and application related CVEs would be imported.
*/
public static final String CVE_CPE_STARTS_WITH_FILTER = "cve.cpe.startswith.filter";
/**
* The properties key for the URL to retrieve the "meta" data from about the CVE entries.
*/