├── .coverage.Siva.8283.978516 ├── .gitignore ├── Dockerfile ├── ISSUE_TEMPLATE ├── bug_report.md └── feature_request.md ├── LICENSE ├── Makefile ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── TODO ├── cico_build_deploy.sh ├── cico_run_pydoc.sh ├── cico_run_pylint.sh ├── cico_run_tests.sh ├── cico_setup.sh ├── cronjob-run.sh ├── cvejob ├── __init__.py ├── config.py ├── cpe2pkg.py ├── filters │ ├── __init__.py │ └── input.py ├── identifiers │ ├── __init__.py │ ├── naive.py │ └── nvdtoolkit.py ├── outputs │ ├── __init__.py │ ├── templates │ │ ├── java │ │ ├── javascript │ │ └── python │ └── victims.py ├── selectors │ ├── __init__.py │ └── basic.py ├── utils.py ├── version.py ├── version_utils.py └── versions │ ├── __init__.py │ └── version_identifier.py ├── data └── .gitkeep ├── database └── .gitkeep ├── docs ├── cronjob.md ├── development.md ├── images │ ├── README.md │ ├── cvejob_pipeline.svg │ └── src │ │ └── cvejob_pipeline.xml └── internals.md ├── doxygen.cfg ├── export └── classifier.checkpoint ├── gen-doc.sh ├── get_nvd.sh ├── list-todo.sh ├── local-run.sh ├── nvd-data └── .gitkeep ├── open_pull_requests.sh ├── openshift ├── README.md └── template.yaml ├── pylint.rc ├── qa ├── check-all.sh ├── check-bashscripts.sh ├── check-docstyle.sh ├── detect-common-errors.sh ├── detect-dead-code.sh ├── directories.txt ├── files.txt ├── measure-cyclomatic-complexity.sh ├── measure-maintainability-index.sh ├── run-linter.sh └── run-tests.sh ├── requirements.txt ├── run.py ├── scripts ├── get_java_packages.sh ├── get_javascript_packages.sh └── get_python_packages.py ├── setup.cfg ├── tests ├── __init__.py ├── conftest.py ├── data │ ├── java-pkgfile │ ├── javascript-nvdcve.json │ ├── maven-nvdcve.json │ ├── maven-vertx-nvdcve.json │ ├── python-nvdcve.json │ ├── rejected-nvdcve.json │ ├── unsupported-nvdcve-2.json │ └── unsupported-nvdcve.json ├── filters │ ├── __init__.py │ └── test_input.py ├── identifiers │ ├── __init__.py │ └── test_naive.py ├── requirements.txt ├── selectors │ ├── __init__.py │ └── test_basic.py ├── test_config.py ├── test_cpe2pkg.py ├── test_utils.py ├── test_version.py ├── test_version_utils.py └── versions │ ├── __init__.py │ └── test_version_identifier.py └── tools ├── bin └── .gitkeep ├── check_python_version.py └── src ├── cpe2pkg ├── LICENSE ├── README.md ├── findbugs-exclude.xml ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── redhat │ │ └── fabric8 │ │ └── analytics │ │ └── cpe2pkg │ │ └── Main.java │ └── test │ ├── java │ └── com │ │ └── redhat │ │ └── fabric8 │ │ └── analytics │ │ └── cpe2pkg │ │ └── MainTest.java │ └── resources │ └── packages.csv └── maven-packages ├── pom.xml └── src └── main └── java └── io └── openshift └── analytics └── packages ├── MavenPackages.java └── Package.java /.coverage.Siva.8283.978516: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/.coverage.Siva.8283.978516 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/Dockerfile -------------------------------------------------------------------------------- /ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/Makefile -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/TODO -------------------------------------------------------------------------------- /cico_build_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cico_build_deploy.sh -------------------------------------------------------------------------------- /cico_run_pydoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cico_run_pydoc.sh -------------------------------------------------------------------------------- /cico_run_pylint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cico_run_pylint.sh -------------------------------------------------------------------------------- /cico_run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cico_run_tests.sh -------------------------------------------------------------------------------- /cico_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cico_setup.sh -------------------------------------------------------------------------------- /cronjob-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cronjob-run.sh -------------------------------------------------------------------------------- /cvejob/__init__.py: -------------------------------------------------------------------------------- 1 | """CVEjob project.""" 2 | -------------------------------------------------------------------------------- /cvejob/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cvejob/config.py -------------------------------------------------------------------------------- /cvejob/cpe2pkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cvejob/cpe2pkg.py -------------------------------------------------------------------------------- /cvejob/filters/__init__.py: -------------------------------------------------------------------------------- 1 | """This package contains various filters.""" 2 | -------------------------------------------------------------------------------- /cvejob/filters/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cvejob/filters/input.py -------------------------------------------------------------------------------- /cvejob/identifiers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cvejob/identifiers/__init__.py -------------------------------------------------------------------------------- /cvejob/identifiers/naive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cvejob/identifiers/naive.py -------------------------------------------------------------------------------- /cvejob/identifiers/nvdtoolkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cvejob/identifiers/nvdtoolkit.py -------------------------------------------------------------------------------- /cvejob/outputs/__init__.py: -------------------------------------------------------------------------------- 1 | """This package contains output writers.""" 2 | -------------------------------------------------------------------------------- /cvejob/outputs/templates/java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cvejob/outputs/templates/java -------------------------------------------------------------------------------- /cvejob/outputs/templates/javascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cvejob/outputs/templates/javascript -------------------------------------------------------------------------------- /cvejob/outputs/templates/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cvejob/outputs/templates/python -------------------------------------------------------------------------------- /cvejob/outputs/victims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cvejob/outputs/victims.py -------------------------------------------------------------------------------- /cvejob/selectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cvejob/selectors/__init__.py -------------------------------------------------------------------------------- /cvejob/selectors/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cvejob/selectors/basic.py -------------------------------------------------------------------------------- /cvejob/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cvejob/utils.py -------------------------------------------------------------------------------- /cvejob/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cvejob/version.py -------------------------------------------------------------------------------- /cvejob/version_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cvejob/version_utils.py -------------------------------------------------------------------------------- /cvejob/versions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cvejob/versions/__init__.py -------------------------------------------------------------------------------- /cvejob/versions/version_identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/cvejob/versions/version_identifier.py -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/cronjob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/docs/cronjob.md -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/docs/images/README.md -------------------------------------------------------------------------------- /docs/images/cvejob_pipeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/docs/images/cvejob_pipeline.svg -------------------------------------------------------------------------------- /docs/images/src/cvejob_pipeline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/docs/images/src/cvejob_pipeline.xml -------------------------------------------------------------------------------- /docs/internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/docs/internals.md -------------------------------------------------------------------------------- /doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/doxygen.cfg -------------------------------------------------------------------------------- /export/classifier.checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/export/classifier.checkpoint -------------------------------------------------------------------------------- /gen-doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/gen-doc.sh -------------------------------------------------------------------------------- /get_nvd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/get_nvd.sh -------------------------------------------------------------------------------- /list-todo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/list-todo.sh -------------------------------------------------------------------------------- /local-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/local-run.sh -------------------------------------------------------------------------------- /nvd-data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /open_pull_requests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/open_pull_requests.sh -------------------------------------------------------------------------------- /openshift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/openshift/README.md -------------------------------------------------------------------------------- /openshift/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/openshift/template.yaml -------------------------------------------------------------------------------- /pylint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/pylint.rc -------------------------------------------------------------------------------- /qa/check-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/qa/check-all.sh -------------------------------------------------------------------------------- /qa/check-bashscripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/qa/check-bashscripts.sh -------------------------------------------------------------------------------- /qa/check-docstyle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/qa/check-docstyle.sh -------------------------------------------------------------------------------- /qa/detect-common-errors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/qa/detect-common-errors.sh -------------------------------------------------------------------------------- /qa/detect-dead-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/qa/detect-dead-code.sh -------------------------------------------------------------------------------- /qa/directories.txt: -------------------------------------------------------------------------------- 1 | cvejob 2 | tests 3 | scripts 4 | tools 5 | -------------------------------------------------------------------------------- /qa/files.txt: -------------------------------------------------------------------------------- 1 | run.py 2 | -------------------------------------------------------------------------------- /qa/measure-cyclomatic-complexity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/qa/measure-cyclomatic-complexity.sh -------------------------------------------------------------------------------- /qa/measure-maintainability-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/qa/measure-maintainability-index.sh -------------------------------------------------------------------------------- /qa/run-linter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/qa/run-linter.sh -------------------------------------------------------------------------------- /qa/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/qa/run-tests.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/run.py -------------------------------------------------------------------------------- /scripts/get_java_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/scripts/get_java_packages.sh -------------------------------------------------------------------------------- /scripts/get_javascript_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/scripts/get_javascript_packages.sh -------------------------------------------------------------------------------- /scripts/get_python_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/scripts/get_python_packages.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Place for unit tests.""" 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/java-pkgfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tests/data/java-pkgfile -------------------------------------------------------------------------------- /tests/data/javascript-nvdcve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tests/data/javascript-nvdcve.json -------------------------------------------------------------------------------- /tests/data/maven-nvdcve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tests/data/maven-nvdcve.json -------------------------------------------------------------------------------- /tests/data/maven-vertx-nvdcve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tests/data/maven-vertx-nvdcve.json -------------------------------------------------------------------------------- /tests/data/python-nvdcve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tests/data/python-nvdcve.json -------------------------------------------------------------------------------- /tests/data/rejected-nvdcve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tests/data/rejected-nvdcve.json -------------------------------------------------------------------------------- /tests/data/unsupported-nvdcve-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tests/data/unsupported-nvdcve-2.json -------------------------------------------------------------------------------- /tests/data/unsupported-nvdcve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tests/data/unsupported-nvdcve.json -------------------------------------------------------------------------------- /tests/filters/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for cvejob.filters modules.""" 2 | -------------------------------------------------------------------------------- /tests/filters/test_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tests/filters/test_input.py -------------------------------------------------------------------------------- /tests/identifiers/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for package name identifiers.""" 2 | -------------------------------------------------------------------------------- /tests/identifiers/test_naive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tests/identifiers/test_naive.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/selectors/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for selectors.""" 2 | -------------------------------------------------------------------------------- /tests/selectors/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tests/selectors/test_basic.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_cpe2pkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tests/test_cpe2pkg.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tests/test_version.py -------------------------------------------------------------------------------- /tests/test_version_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tests/test_version_utils.py -------------------------------------------------------------------------------- /tests/versions/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for version range identifiers.""" 2 | -------------------------------------------------------------------------------- /tests/versions/test_version_identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tests/versions/test_version_identifier.py -------------------------------------------------------------------------------- /tools/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/check_python_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tools/check_python_version.py -------------------------------------------------------------------------------- /tools/src/cpe2pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tools/src/cpe2pkg/LICENSE -------------------------------------------------------------------------------- /tools/src/cpe2pkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tools/src/cpe2pkg/README.md -------------------------------------------------------------------------------- /tools/src/cpe2pkg/findbugs-exclude.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tools/src/cpe2pkg/findbugs-exclude.xml -------------------------------------------------------------------------------- /tools/src/cpe2pkg/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tools/src/cpe2pkg/pom.xml -------------------------------------------------------------------------------- /tools/src/cpe2pkg/src/main/java/com/redhat/fabric8/analytics/cpe2pkg/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tools/src/cpe2pkg/src/main/java/com/redhat/fabric8/analytics/cpe2pkg/Main.java -------------------------------------------------------------------------------- /tools/src/cpe2pkg/src/test/java/com/redhat/fabric8/analytics/cpe2pkg/MainTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tools/src/cpe2pkg/src/test/java/com/redhat/fabric8/analytics/cpe2pkg/MainTest.java -------------------------------------------------------------------------------- /tools/src/cpe2pkg/src/test/resources/packages.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tools/src/cpe2pkg/src/test/resources/packages.csv -------------------------------------------------------------------------------- /tools/src/maven-packages/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tools/src/maven-packages/pom.xml -------------------------------------------------------------------------------- /tools/src/maven-packages/src/main/java/io/openshift/analytics/packages/MavenPackages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tools/src/maven-packages/src/main/java/io/openshift/analytics/packages/MavenPackages.java -------------------------------------------------------------------------------- /tools/src/maven-packages/src/main/java/io/openshift/analytics/packages/Package.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8-analytics/cvejob/HEAD/tools/src/maven-packages/src/main/java/io/openshift/analytics/packages/Package.java --------------------------------------------------------------------------------