Uses of Class
org.owasp.dependencycheck.data.nodeaudit.Advisory
-
Packages that use Advisory Package Description org.owasp.dependencycheck.analyzer Analyzers are used to inspect the identified dependencies, collect Evidence, and process the dependencies.org.owasp.dependencycheck.data.cache Implements a generic persisted cache that can be used to store results of external analysis between executions.org.owasp.dependencycheck.data.nodeaudit Contains classes related to searching via Node Audit API.
These are used to abstract Node Audit searching away from OWASP Dependency Check so they can be reused elsewhere. -
-
Uses of Advisory in org.owasp.dependencycheck.analyzer
Method parameters in org.owasp.dependencycheck.analyzer with type arguments of type Advisory Modifier and Type Method Description protected voidAbstractNpmAnalyzer. processResults(java.util.List<Advisory> advisories, Engine engine, Dependency dependency, org.apache.commons.collections4.MultiValuedMap<java.lang.String,java.lang.String> dependencyMap)Processes the advisories creating the appropriate dependency objects and adding the resulting vulnerabilities. -
Uses of Advisory in org.owasp.dependencycheck.data.cache
Methods in org.owasp.dependencycheck.data.cache that return types with arguments of type Advisory Modifier and Type Method Description DataCache<java.util.List<Advisory>>DataCacheFactory. getNodeAuditCache()Returns the data cache for Node Audit. -
Uses of Advisory in org.owasp.dependencycheck.data.nodeaudit
Methods in org.owasp.dependencycheck.data.nodeaudit that return types with arguments of type Advisory Modifier and Type Method Description java.util.List<Advisory>NpmAuditParser. parse(org.json.JSONObject jsonResponse)Parses the JSON response from the NPM Audit API.java.util.List<Advisory>NodeAuditSearch. submitPackage(javax.json.JsonObject packageJson)Submits the package.json file to the Node Audit API and returns a list of zero or more Advisories.
-