-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* [CveXplore-231] added stub file for dynamically generated attributes in collection classes * [CveXplore-231] updated readme with new init parameter * [CveXplore-231] make data source configurable via config * [CveXplore-231] altered generic attribute; should be fixed in cve-search/cve-search#1038 as well on new release * [CveXplore-231] all collections moved to specific_db class * [CveXplore-231] moved post tasks to separate calls * [CveXplore-231] minor * [CveXplore-231] minor * [CveXplore-231] make data source configurable via config
- Loading branch information
Showing
16 changed files
with
218 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.3.20.dev5 | ||
0.3.20.dev6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
from CveXplore.database.helpers.generic_db import GenericDatabaseFieldsFunctions | ||
|
||
class CvesDatabaseFunctions: | ||
id: GenericDatabaseFieldsFunctions | ||
cvss: GenericDatabaseFieldsFunctions | ||
cvss3: GenericDatabaseFieldsFunctions | ||
summary: GenericDatabaseFieldsFunctions | ||
vendors: GenericDatabaseFieldsFunctions | ||
products: GenericDatabaseFieldsFunctions | ||
lastModified: GenericDatabaseFieldsFunctions | ||
modified: GenericDatabaseFieldsFunctions | ||
published: GenericDatabaseFieldsFunctions | ||
status: GenericDatabaseFieldsFunctions | ||
assigner: GenericDatabaseFieldsFunctions | ||
cwe: GenericDatabaseFieldsFunctions | ||
epss: GenericDatabaseFieldsFunctions | ||
|
||
def __init__(self, collection: str): ... | ||
|
||
class CpeDatabaseFunctions: | ||
id: GenericDatabaseFieldsFunctions | ||
title: GenericDatabaseFieldsFunctions | ||
cpeName: GenericDatabaseFieldsFunctions | ||
vendor: GenericDatabaseFieldsFunctions | ||
product: GenericDatabaseFieldsFunctions | ||
stem: GenericDatabaseFieldsFunctions | ||
|
||
def __init__(self, collection: str): ... | ||
|
||
class CapecDatabaseFunctions: | ||
name: GenericDatabaseFieldsFunctions | ||
summary: GenericDatabaseFieldsFunctions | ||
prerequisites: GenericDatabaseFieldsFunctions | ||
solutions: GenericDatabaseFieldsFunctions | ||
loa: GenericDatabaseFieldsFunctions | ||
typical_severity: GenericDatabaseFieldsFunctions | ||
|
||
def __init__(self, collection: str): ... | ||
|
||
class CWEDatabaseFunctions: | ||
name: GenericDatabaseFieldsFunctions | ||
status: GenericDatabaseFieldsFunctions | ||
description: GenericDatabaseFieldsFunctions | ||
|
||
def __init__(self, collection: str): ... |
Oops, something went wrong.