├── .coveragerc ├── .gitignore ├── .isort.cfg ├── .pylintrc ├── .style.yapf ├── .travis.yml ├── HISTORY.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── mypy.ini ├── ossaudit ├── __init__.py ├── __main__.py ├── audit.py ├── cache.py ├── cli.py ├── const.py ├── option.py └── packages.py ├── requirements ├── README.md ├── requirements-dev-1.txt ├── requirements-dev-2.txt ├── requirements-dev-3.txt └── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── data └── vulns01.json ├── helpers.py ├── test_audit.py ├── test_cache.py ├── test_cli.py ├── test_option.py └── test_packages.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/.pylintrc -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/.style.yapf -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/README.md -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/mypy.ini -------------------------------------------------------------------------------- /ossaudit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/ossaudit/__init__.py -------------------------------------------------------------------------------- /ossaudit/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/ossaudit/__main__.py -------------------------------------------------------------------------------- /ossaudit/audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/ossaudit/audit.py -------------------------------------------------------------------------------- /ossaudit/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/ossaudit/cache.py -------------------------------------------------------------------------------- /ossaudit/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/ossaudit/cli.py -------------------------------------------------------------------------------- /ossaudit/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/ossaudit/const.py -------------------------------------------------------------------------------- /ossaudit/option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/ossaudit/option.py -------------------------------------------------------------------------------- /ossaudit/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/ossaudit/packages.py -------------------------------------------------------------------------------- /requirements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/requirements/README.md -------------------------------------------------------------------------------- /requirements/requirements-dev-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/requirements/requirements-dev-1.txt -------------------------------------------------------------------------------- /requirements/requirements-dev-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/requirements/requirements-dev-2.txt -------------------------------------------------------------------------------- /requirements/requirements-dev-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/requirements/requirements-dev-3.txt -------------------------------------------------------------------------------- /requirements/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/requirements/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [pycodestyle] 2 | max-doc-length = 72 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2019, Hans Jerry Illikainen 2 | # 3 | # SPDX-License-Identifier: BSD-2-Clause 4 | -------------------------------------------------------------------------------- /tests/data/vulns01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/tests/data/vulns01.json -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/test_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/tests/test_audit.py -------------------------------------------------------------------------------- /tests/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/tests/test_cache.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/tests/test_option.py -------------------------------------------------------------------------------- /tests/test_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illikainen/ossaudit/HEAD/tests/test_packages.py --------------------------------------------------------------------------------