Uses of Class
org.owasp.dependencycheck.data.nvdcve.CveDB
-
Packages that use CveDB Package Description org.owasp.dependencycheck Includes the main entry point for dependency-check.org.owasp.dependencycheck.analyzer Analyzers are used to inspect the identified dependencies, collect Evidence, and process the dependencies.org.owasp.dependencycheck.data.update.nvd.api Contains classes used to download, parse, and load the NVD API CVE data from NIST into the local database. -
-
Uses of CveDB in org.owasp.dependencycheck
Methods in org.owasp.dependencycheck that return CveDB Modifier and Type Method Description CveDB
Engine. getDatabase()
Returns a reference to the database. -
Uses of CveDB in org.owasp.dependencycheck.analyzer
Methods in org.owasp.dependencycheck.analyzer that return CveDB Modifier and Type Method Description protected CveDB
CPEAnalyzer. getCveDB()
returns a reference to the CveDB.Methods in org.owasp.dependencycheck.analyzer with parameters of type CveDB Modifier and Type Method Description void
CPEAnalyzer. open(CveDB cve)
Opens the data source.void
NpmCPEAnalyzer. open(CveDB cve)
Opens the data source.protected void
CPEAnalyzer. setCveDB(CveDB cveDb)
Sets the reference to the CveDB. -
Uses of CveDB in org.owasp.dependencycheck.data.update.nvd.api
Constructors in org.owasp.dependencycheck.data.update.nvd.api with parameters of type CveDB Constructor Description DownloadTask(java.lang.String url, java.util.concurrent.ExecutorService processor, CveDB cveDB, Settings settings)
Simple constructor for the callable download task.NvdApiProcessor(CveDB cveDB, java.io.File jsonFile)
Create a new processor to put the NVD data into the database.NvdApiProcessor(CveDB cveDB, java.io.File jsonFile, long startTime)
Create a new processor to put the NVD data into the database.
-