├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── contribution-request.md │ ├── feature-request.md │ └── question.md └── workflows │ └── ci.yml ├── .gitignore ├── .whitesource ├── CLA.md ├── Dockerfile ├── LICENSE ├── README.md ├── ToDo.md ├── examples ├── WhiteSource node-npm SBOM report-SPDX-2.2.xml ├── WhiteSource python SBOM report-SPDX-2.2.tv ├── WhiteSource python SBOM report-SPDX-2.2.xml └── WhiteSource webgoat-integration-tests - 8.2.0-SNAPSHOT SBOM report-SPDX-2.2.json ├── requirements.txt ├── setup.py └── ws_sbom_generator ├── __init__.py ├── _version.py ├── conftest.py ├── cyclonedx.py ├── resources └── sbom_extra.json ├── sbom_generator.py └── tests └── test_sbom_generator.py /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/contribution-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/.github/ISSUE_TEMPLATE/contribution-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/.whitesource -------------------------------------------------------------------------------- /CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/CLA.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/README.md -------------------------------------------------------------------------------- /ToDo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/ToDo.md -------------------------------------------------------------------------------- /examples/WhiteSource node-npm SBOM report-SPDX-2.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/examples/WhiteSource node-npm SBOM report-SPDX-2.2.xml -------------------------------------------------------------------------------- /examples/WhiteSource python SBOM report-SPDX-2.2.tv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/examples/WhiteSource python SBOM report-SPDX-2.2.tv -------------------------------------------------------------------------------- /examples/WhiteSource python SBOM report-SPDX-2.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/examples/WhiteSource python SBOM report-SPDX-2.2.xml -------------------------------------------------------------------------------- /examples/WhiteSource webgoat-integration-tests - 8.2.0-SNAPSHOT SBOM report-SPDX-2.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/examples/WhiteSource webgoat-integration-tests - 8.2.0-SNAPSHOT SBOM report-SPDX-2.2.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/setup.py -------------------------------------------------------------------------------- /ws_sbom_generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_sbom_generator/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/ws_sbom_generator/_version.py -------------------------------------------------------------------------------- /ws_sbom_generator/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ws_sbom_generator/cyclonedx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/ws_sbom_generator/cyclonedx.py -------------------------------------------------------------------------------- /ws_sbom_generator/resources/sbom_extra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/ws_sbom_generator/resources/sbom_extra.json -------------------------------------------------------------------------------- /ws_sbom_generator/sbom_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/ws_sbom_generator/sbom_generator.py -------------------------------------------------------------------------------- /ws_sbom_generator/tests/test_sbom_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitesource-ps/ws-sbom-generator/HEAD/ws_sbom_generator/tests/test_sbom_generator.py --------------------------------------------------------------------------------