Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jhermann/dependency-check-py
:closed_lock_with_key: Shim to easily install OWASP dependency-check-cli into Python projects
https://github.com/jhermann/dependency-check-py
cli-utility cve-scanning dependency-analysis owasp python security security-audit software-composition-analysis software-supply-chain vulnerability-detection
Last synced: 19 days ago
JSON representation
:closed_lock_with_key: Shim to easily install OWASP dependency-check-cli into Python projects
- Host: GitHub
- URL: https://github.com/jhermann/dependency-check-py
- Owner: jhermann
- License: apache-2.0
- Created: 2015-11-11T12:46:13.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-06-22T08:50:00.000Z (over 3 years ago)
- Last Synced: 2024-10-18T14:31:42.878Z (about 1 month ago)
- Topics: cli-utility, cve-scanning, dependency-analysis, owasp, python, security, security-audit, software-composition-analysis, software-supply-chain, vulnerability-detection
- Language: Python
- Homepage:
- Size: 178 KB
- Stars: 49
- Watchers: 4
- Forks: 12
- Open Issues: 4
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
- License: LICENSE
Awesome Lists containing this project
README
dependency-check
================|Travis CI| |GitHub Issues| |License| |Latest Version|
Shim to easily install the `OWASP dependency-check-cli`_ tool into Python projects.
.. contents:: **Table of Contents**
.. _setup-start:
:Code: https://github.com/jhermann/dependency-check-py#readme
:Docs: https://github.com/jeremylong/dependencycheck#readme
:CI: https://travis-ci.org/jhermann/dependency-check-py
:Issues: https://github.com/jhermann/dependency-check-py/issuesOverview
--------``dependency-check`` scans application dependencies and checks whether they contain any published vulnerabilities
(based on the NIST `NVD`_).
It runs in the JVM, so you need some form of ``java`` available in your ``PATH``.
The script should work on Linux, Mac OSX and Windows, but right now is only tested on Linux.Usage
-----After installation, you'll have the ``dependency-check`` command available that, on first use,
will automatically download and install the OWASP release archive once for all projects.
It'll then redirect any calls to that installation, meaning the downloaded NVD data is shared
amongst projects... code-block::
dependency-check --disableAssembly -s . -o build --project "$(python ./setup.py --name)" \
--exclude ".git/**" --exclude ".venv/**" --exclude "**/__pycache__/**" --exclude ".tox/**" \
&& xdg-open build/dependency-check-report.htmlPlease see the `DependencyCheck site`_ for more configuration and usage details.
To install from PyPI, add ``dependency-check`` to your ``dev-requirements.txt``
or a similar file. For more installation options, see the “Installation” section below.|Installation Demo|
Customization
-------------Using environment variables, you can change the version and download location of the release archive,
and the directory for the local installation.=============================== ==============================================================================================
Variable Default
=============================== ==============================================================================================
``DEPENDENCY_CHECK_VERSION`` ``6.2.2``
``DEPENDENCY_CHECK_URL`` ``https://github.com/jeremylong/DependencyCheck/releases/download/v{version}/dependency-check-{version}-release.zip``
``DEPENDENCY_CHECK_HOME`` ``~/.local/dependency-check``
``DEPENDENCY_CHECK_NVD_URL`` *Use NIST NVD URLs*
=============================== ==============================================================================================To update to a new version of the OWASP software,
delete ``~/.local/dependency-check/bin/``,
set ``DEPENDENCY_CHECK_VERSION`` to the new version number,
and call ``dependency-check``.The variable ``DEPENDENCY_CHECK_NVD_URL`` can be used to point to a local copy of the various NVD feeds,
in a flat hierarchy with compressed JSON files... code-block:: shell
export DEPENDENCY_CHECK_NVD_URL='https://repo.local/nvd/nvdcve-1.1-%d.json.gz'
If you set this, the options ``--cveUrlBase`` and ``--cveUrlModified`` will be added to each call.
Note that the ``%d`` representing the year is replaced by ``modified`` for the latter.Remove the ``~/.local/dependency-check/data/`` directory to force a full data reload.
Installation
------------To just get the ``dependency-check`` CLI tool installed into your home,
independent of any project, call ``python3 -m pip install --user dependency-check`` as usual,
see `releases`_ for an overview of available versions.If you prefer an **isolated and easily removable venv installation**,
consider using `dephell jail install dependency-check`_ instead.To get a bleeding-edge version from source, use these commands::
repo="jhermann/dependency-check-py"
python3 -m pip install -r "https://raw.githubusercontent.com/$repo/master/requirements.txt"
python3 -m pip install "https://github.com/$repo/archive/master.zip#egg=dependency-check"As a developer, to create a working directory for this project, call these commands::
git clone "https://github.com/jhermann/dependency-check-py.git"
cd "dependency-check-py"
command . .env --yes --develop
invoke build --docs test checkYou might also need to follow some
`setup procedures `_
to make the necessary basic commands available on *Linux*, *Mac OS X*, and *Windows*.Other Python Security Tools
---------------------------* `openstack/bandit`_ – Security linter designed to find common security issues in Python code, by static AST analysis.
* `pyupio/safety`_ – Safety checks your installed dependencies for known security vulnerabilities.* `pyupio/safety-db`_ – A curated database of security vulnerabilities in Python packages.
* `eliasgranderubio/dagda`_ – Static analysis of known vulnerabilities, trojans, viruses, malware & other malicious threats in Docker images, and runtime monitoring of containers for anomalous activities.
* `anchore/anchore-engine`_ – A service for inspection, analysis and certification of container images, provided as a ready-to-deploy Docker container image.
* `sonatype-nexus-community/jake`_ – An OSS Index integration to check your Conda environments for vulnerable Open Source packages.* `vintasoftware/python-linters-and-code-analysis`_ – Curated list of Python linters and code analysis tools.
.. _`openstack/bandit`: https://github.com/openstack/bandit
.. _`pyupio/safety`: https://github.com/pyupio/safety
.. _`pyupio/safety-db`: https://github.com/pyupio/safety-db
.. _`eliasgranderubio/dagda`: https://github.com/eliasgranderubio/dagda
.. _`anchore/anchore-engine`: https://github.com/anchore/anchore-engine
.. _`vintasoftware/python-linters-and-code-analysis`: https://github.com/vintasoftware/python-linters-and-code-analysis
.. _`sonatype-nexus-community/jake`: https://github.com/sonatype-nexus-community/jake.. _`NVD`: https://nvd.nist.gov/
.. _`OWASP dependency-check-cli`: https://github.com/jeremylong/dependencycheck#readme
.. _`DependencyCheck site`: https://www.owasp.org/index.php/OWASP_Dependency_Check
.. _`pip script installer`: https://github.com/mitsuhiko/pipsi#pipsi
.. _`releases`: https://github.com/jhermann/dependency-check-py/releases
.. _`dephell jail install dependency-check`: https://dephell.readthedocs.io/cmd-jail-install.html.. |Installation Demo| image:: https://raw.githubusercontent.com/jhermann/dependency-check-py/master/dependency_check.gif
.. |Travis CI| image:: https://api.travis-ci.org/jhermann/dependency-check-py.svg
:target: https://travis-ci.org/jhermann/dependency-check-py
.. |Coveralls| image:: https://img.shields.io/coveralls/jhermann/dependency-check-py.svg
:target: https://coveralls.io/r/jhermann/dependency-check-py
.. |GitHub Issues| image:: https://img.shields.io/github/issues/jhermann/dependency-check-py.svg
:target: https://github.com/jhermann/dependency-check-py/issues
.. |License| image:: https://img.shields.io/pypi/l/dependency-check.svg
:target: https://github.com/jhermann/dependency-check-py/blob/master/LICENSE
.. |Development Status| image:: https://img.shields.io/pypi/status/dependency-check.svg
:target: https://pypi.python.org/pypi/dependency-check/
.. |Latest Version| image:: https://img.shields.io/pypi/v/dependency-check.svg
:target: https://pypi.python.org/pypi/dependency-check/
.. |Download format| image:: https://img.shields.io/pypi/format/dependency-check.svg
:target: https://pypi.python.org/pypi/dependency-check/
.. |Downloads| image:: https://img.shields.io/pypi/dw/dependency-check.svg
:target: https://pypi.python.org/pypi/dependency-check/