This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

Difference between revisions of "OWASP Dependency Check"

From OWASP
Jump to: navigation, search
m (released version 2.1.1)
m (3.0.0 release)
Line 21: Line 21:
 
== Quick Download ==
 
== Quick Download ==
  
Version 2.1.1
+
Version 3.0.0
* [http://dl.bintray.com/jeremy-long/owasp/dependency-check-2.1.1-release.zip Command Line]
+
* [http://dl.bintray.com/jeremy-long/owasp/dependency-check-3.0.0-release.zip Command Line]
* [http://dl.bintray.com/jeremy-long/owasp/dependency-check-ant-2.1.1-release.zip Ant Task]
+
* [http://dl.bintray.com/jeremy-long/owasp/dependency-check-ant-3.0.0-release.zip Ant Task]
* [http://search.maven.org/#artifactdetails%7Corg.owasp%7Cdependency-check-maven%7C2.1.1%7Cmaven-plugin Maven Plugin]
+
* [http://search.maven.org/#artifactdetails%7Corg.owasp%7Cdependency-check-maven%7C3.0.0%7Cmaven-plugin Maven Plugin]
* [http://search.maven.org/#artifactdetails%7Corg.owasp%7Cdependency-check-gradle%7C2.1.1%7Cgradle-plugin Gradle Plugin]
+
* [http://search.maven.org/#artifactdetails%7Corg.owasp%7Cdependency-check-gradle%7C3.0.0%7Cgradle-plugin Gradle Plugin]
 
* [https://wiki.jenkins-ci.org/display/JENKINS/OWASP+Dependency-Check+Plugin Jenkins Plugin]
 
* [https://wiki.jenkins-ci.org/display/JENKINS/OWASP+Dependency-Check+Plugin Jenkins Plugin]
 
* [http://brew.sh/ Mac Homebrew]:<br><code>brew update && brew install dependency-check</code>
 
* [http://brew.sh/ Mac Homebrew]:<br><code>brew update && brew install dependency-check</code>
Line 31: Line 31:
 
Other Plugins
 
Other Plugins
 
* [http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22net.vonbuchholtz%22%20a%3A%22sbt-dependency-check%22 sbt Plugin]
 
* [http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22net.vonbuchholtz%22%20a%3A%22sbt-dependency-check%22 sbt Plugin]
 +
* [https://github.com/livingsocial/lein-dependency-check lein-dependency-check]
  
 
== Integrations ==
 
== Integrations ==

Revision as of 12:35, 15 October 2017

Flagship big.jpg

OWASP Dependency-Check

Dependency-Check is a utility that identifies project dependencies and checks if there are any known, publicly disclosed, vulnerabilities. Currently Java and .NET are supported; additional experimental support has been added for Ruby, Node.js, Python, and limited support for C/C++ build systems (autoconf and cmake). The tool can be part of a solution to the OWASP Top 10 2013 A9 - Using Components with Known Vulnerabilities.

Introduction

The OWASP Top 10 2013 contains a new entry: A9 - Using Components with Known Vulnerabilities. Dependency-check can currently be used to scan applications (and their dependent libraries) to identify any known vulnerable components.

The problem with using known vulnerable components was described very well in a paper by Jeff Williams and Arshan Dabirsiaghi titled, "The Unfortunate Reality of Insecure Libraries" (registration required). The gist of the paper is that we as a development community include third party libraries in our applications that contain well known published vulnerabilities (such as those at the National Vulnerability Database).

Dependency-check has a command line interface, a Maven plugin, an Ant task, and a Jenkins plugin. 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). The evidence is then used to identify the Common Platform Enumeration (CPE) for the given dependency. If a CPE is identified, a listing of associated Common Vulnerability and Exposure (CVE) entries are listed in a report.

Dependency-check automatically updates itself using the NVD Data Feeds hosted by NIST. IMPORTANT NOTE: The initial download of the data may take ten minutes or more, if you run the tool at least once every seven days only a small XML file needs to be downloaded to keep the local copy of the data current.

Quick Download

Version 3.0.0

Other Plugins

Integrations

Links

Documentation

Mailing List

Presentation

Classifications

Owasp-flagship-trans-85.png Owasp-builders-small.png
Owasp-defenders-small.png
Cc-button-y-sa-small.png
Project Type Files CODE.jpg

Volunteers

Dependency-Check is developed by a team of volunteers. The primary contributors to date have been:

As of March 2015, the top priorities are:

Involvement in the development and promotion of dependency-check is actively encouraged! You do not have to be a security expert in order to contribute. How you can help:

  • Use the tool
  • Provide feedback via the mailing list or by creating github issues (both bugs and feature requests are encouraged)
  • The project source code is hosted on github - if you are so inclined fork it and provide push requests!