OWASP
owasp.org โบ www-project-dependency-check
OWASP Dependency-Check | OWASP Foundation
Dependency-Check has a command line interface, a Maven plugin, a Gradle plugin, an Ant task and a number of integrations with build tooling such as Jenkins, GitHub Actions and Azure DevOps. The core engine contains a series of analyzers that inspect the project dependencies, collect pieces of information about the dependencies (referred to as evidence within the tool).
GitHub
github.com โบ dependency-check โบ DependencyCheck
GitHub - dependency-check/DependencyCheck: OWASP dependency-check is a software composition analysis utility that detects publicly disclosed vulnerabilities in application dependencies. ยท GitHub
More detailed instructions can be found on the dependency-check-maven github pages. By default, the plugin is tied to the verify phase (i.e. mvn verify). Alternatively, one can directly invoke the plugin via mvn org.owasp:dependency-check-maven:check.
Starred by 7.5K users
Forked by 1.4K users
Languages ย Java 96.7% | PLSQL 0.8% | Groovy 0.7% | PLpgSQL 0.6% | TSQL 0.6% | Shell 0.4%
Videos
13:44
OWASP Dependency Check Integration with Jenkins - YouTube
14:40
OWASP Dependency Check - YouTube
02:28
OWASP Dependency Check: Part 1 - How to Install - YouTube
02:11
OWASP Dependency Check: Part 2 - How to Scan Your Project - YouTube
09:32
OWASP || Dependency Check || 3rd Party Jars || Maven Project - YouTube
12:33
OWASP dependency check Maven - YouTube
Gradle
plugins.gradle.org โบ plugin โบ org.owasp.dependencycheck
Gradle - Plugin: org.owasp.dependencycheck
Created 11 April 2026. A software composition analysis plugin that identifies known vulnerable dependencies used by the project. ... Adding the plugin to build logic for usage in precompiled script plugins. See the relevant documentation for more information.
Jenkins
plugins.jenkins.io โบ dependency-check-jenkins-plugin
OWASP Dependency-Check | Jenkins plugin
2 weeks ago - This plug-in can independently execute a Dependency-Check analysis and visualize results. The plugin has three main components: a globally defined tool configuration, a builder, and a publisher.
Owasp
devguide.owasp.org โบ en โบ 05-implementation โบ 02-dependencies โบ 01-dependency-check
Dependency-Check - OWASP Developer Guide
Dependency-Check also provides plugins to check for vulnerable components for CI/CD pipelines. The OWASP Spotlight series provides an example of the risks involved in using out of date and vulnerable libraries, and how to use Dependency-Check: 'Project 2 - OWASP Dependency Check'.
Maven Repository
mvnrepository.com โบ artifact โบ org.owasp โบ dependency-check-maven
Maven Repository: org.owasp ยป dependency-check-maven
1 week ago - dependency-check-maven is a Maven Plugin that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies.
Jeremylong
jeremylong.github.io โบ DependencyCheck
About โ dependency-check-maven
OWASP dependency-check is an open source solution to the OWASP Top 10 2021 entry: A06:2021 โ Vulnerable and Outdated Components. Dependency-check can currently be used to scan software to identify the use of known vulnerable components. For a full list of supported languages/technologies ...
Dependency-check
dependency-check.github.io โบ DependencyCheck โบ dependency-check-cli โบ index.html
About โ dependency-check-cli
OWASP dependency-check-cli is an command line tool that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the scanned project dependencies.
Dependency-check
dependency-check.github.io โบ DependencyCheck โบ dependency-check-gradle โบ index.html
Usage โ dependency-check-maven
The OWASP dependency-check-gradle plugin provides monitoring of the projects dependent libraries; creating a report of known vulnerable components that are included in the build.
GitHub
github.com โบ jeremylong โบ DependencyCheck
GitHub - jeremylong/DependencyCheck: The dependency-check repository has moved: ยท GitHub
September 27, 2025 - The OWASP dependency-check repository has moved to https://github.com/dependency-check/DependencyCheck.
Starred by 48 users
Forked by 27 users
Languages ย Java 65.6% | JavaScript 21.7% | CMake 8.3% | M4 1.3% | PLSQL 0.6% | Groovy 0.5%
Jeremylong
jeremylong.github.io โบ DependencyCheck โบ dependency-check-maven
Usage โ dependency-check-maven
Create the dependency-check-report.html and use internal mirroring of CVE contents. Note, that the NVD JSON files and META files must also be mirrored; see https://nvd.nist.gov/vuln/data-feeds#JSON_FEED. <project> ... <build> ... <plugins> ... <plugin> <groupId>org.owasp</groupId> <artifactId>dependency-check-maven</artifactId> <version>12.1.0</version> <configuration> <nvdDatafeedUrl>http://internal-mirror.mycorp.com/nvdcve-{0}.json.gz</nvdDatafeedUrl> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> ...
Visual Studio Marketplace
marketplace.visualstudio.com โบ items
OWASP Dependency Check - Visual Studio Marketplace
Extension for Azure DevOps - Dependency Check is a Software Composition Analysis (SCA) tool that attempts to detect publicly disclosed vulnerabilities contained within a project's dependencies.
Jeremylong
jeremylong.github.io โบ DependencyCheck โบ dependency-check-gradle โบ index.html
Usage โ dependency-check-maven - GitHub Pages
The OWASP dependency-check-gradle plugin provides monitoring of the projects dependent libraries; creating a report of known vulnerable components that are included in the build.
Jenkins-ci
wiki.jenkins-ci.org โบ JENKINS โบ OWASP-Dependency-Check-Plugin.html
Jenkins : OWASP Dependency-Check Plugin
Persisted cross-site scripting ... in project dependencies. Dependency-Check is an open source utility that identifies project dependencies and identifies if there are any known, publicly disclosed, vulnerabilities. This tool can be part of the solution to the OWASP Top ...
Jenkins
jenkins.io โบ doc โบ pipeline โบ steps โบ dependency-check-jenkins-plugin
OWASP Dependency-Check Plugin
With 9.0.0 dependency-check has moved from using the NVD data-feed to the NVD API.
Maven Central
central.sonatype.com โบ artifact โบ org.owasp โบ dependency-check-maven
Maven Central: org.owasp:dependency-check-maven
pkg:maven/org.owasp/dependency-check-maven@Loading... ... dependency-check-maven is a Maven Plugin that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies.
GitHub
github.com โบ dependency-check โบ dependency-check-gradle
GitHub - dependency-check/dependency-check-gradle: The dependency-check gradle plugin is a Software Composition Analysis (SCA) tool that allows projects to monitor dependent libraries for known, published vulnerabilities. ยท GitHub
The dependency-check-gradle plugin will no longer be published to Maven Central; it will continue to be published to the Gradle plugin portal. Below are the quick start instructions. Please see the documentation site for more detailed information on configuration and usage. Add the plugin to your build.gradle file: plugins { id "org.owasp.dependencycheck" version "12.2.1" } Once gradle plugin applied, run following gradle task to check dependencies: gradle dependencyCheckAnalyze --info ยท
Starred by 386 users
Forked by 102 users
Languages ย Groovy
Maven Central
central.sonatype.com โบ artifact โบ org.owasp โบ dependency-check-plugin
dependency-check-plugin - org.owasp - Maven Central
pkg:maven/org.owasp/dependency-check-plugin@Loading...