├── .github ├── ISSUE_TEMPLATE │ └── bug.yml └── workflows │ ├── pylint.yml │ └── python-publish.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── bes_dev_kit ├── __init__.py ├── __main__.py ├── cli.py ├── config.py └── src │ ├── create_ossp_master.py │ ├── create_version_data.py │ ├── generate_report.py │ ├── risk_assessment.py │ ├── risk_summary │ ├── License_compliance.py │ ├── New_line_char.py │ ├── Objective.py │ ├── Sbom_report.py │ ├── Scorecard_report.py │ └── Static_code_analysis.py │ ├── validate_report_file.py │ └── validate_version_file.py ├── docs ├── bes-dev-kit--help.gif ├── generate-metadata--help.gif ├── generate-metadata-first-time.jpg ├── generate-metadata.gif ├── generate-report--help.gif ├── generate-report.gif ├── risk-summary--help.gif ├── risk-summary.gif ├── validate-report-file--help.gif ├── validate-report-file-all-report.gif ├── validate-report-file.gif ├── validate-version-file--help.gif └── validate-version-file.gif ├── features.md ├── poetry.lock ├── pyproject.toml └── tests ├── __init__.py ├── test_metadata.py ├── test_report.py ├── test_vdnc.py └── test_version.py /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/README.md -------------------------------------------------------------------------------- /bes_dev_kit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/bes_dev_kit/__init__.py -------------------------------------------------------------------------------- /bes_dev_kit/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/bes_dev_kit/__main__.py -------------------------------------------------------------------------------- /bes_dev_kit/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/bes_dev_kit/cli.py -------------------------------------------------------------------------------- /bes_dev_kit/config.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bes_dev_kit/src/create_ossp_master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/bes_dev_kit/src/create_ossp_master.py -------------------------------------------------------------------------------- /bes_dev_kit/src/create_version_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/bes_dev_kit/src/create_version_data.py -------------------------------------------------------------------------------- /bes_dev_kit/src/generate_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/bes_dev_kit/src/generate_report.py -------------------------------------------------------------------------------- /bes_dev_kit/src/risk_assessment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/bes_dev_kit/src/risk_assessment.py -------------------------------------------------------------------------------- /bes_dev_kit/src/risk_summary/License_compliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/bes_dev_kit/src/risk_summary/License_compliance.py -------------------------------------------------------------------------------- /bes_dev_kit/src/risk_summary/New_line_char.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/bes_dev_kit/src/risk_summary/New_line_char.py -------------------------------------------------------------------------------- /bes_dev_kit/src/risk_summary/Objective.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/bes_dev_kit/src/risk_summary/Objective.py -------------------------------------------------------------------------------- /bes_dev_kit/src/risk_summary/Sbom_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/bes_dev_kit/src/risk_summary/Sbom_report.py -------------------------------------------------------------------------------- /bes_dev_kit/src/risk_summary/Scorecard_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/bes_dev_kit/src/risk_summary/Scorecard_report.py -------------------------------------------------------------------------------- /bes_dev_kit/src/risk_summary/Static_code_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/bes_dev_kit/src/risk_summary/Static_code_analysis.py -------------------------------------------------------------------------------- /bes_dev_kit/src/validate_report_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/bes_dev_kit/src/validate_report_file.py -------------------------------------------------------------------------------- /bes_dev_kit/src/validate_version_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/bes_dev_kit/src/validate_version_file.py -------------------------------------------------------------------------------- /docs/bes-dev-kit--help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/docs/bes-dev-kit--help.gif -------------------------------------------------------------------------------- /docs/generate-metadata--help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/docs/generate-metadata--help.gif -------------------------------------------------------------------------------- /docs/generate-metadata-first-time.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/docs/generate-metadata-first-time.jpg -------------------------------------------------------------------------------- /docs/generate-metadata.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/docs/generate-metadata.gif -------------------------------------------------------------------------------- /docs/generate-report--help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/docs/generate-report--help.gif -------------------------------------------------------------------------------- /docs/generate-report.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/docs/generate-report.gif -------------------------------------------------------------------------------- /docs/risk-summary--help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/docs/risk-summary--help.gif -------------------------------------------------------------------------------- /docs/risk-summary.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/docs/risk-summary.gif -------------------------------------------------------------------------------- /docs/validate-report-file--help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/docs/validate-report-file--help.gif -------------------------------------------------------------------------------- /docs/validate-report-file-all-report.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/docs/validate-report-file-all-report.gif -------------------------------------------------------------------------------- /docs/validate-report-file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/docs/validate-report-file.gif -------------------------------------------------------------------------------- /docs/validate-version-file--help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/docs/validate-version-file--help.gif -------------------------------------------------------------------------------- /docs/validate-version-file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/docs/validate-version-file.gif -------------------------------------------------------------------------------- /features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/features.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/tests/test_metadata.py -------------------------------------------------------------------------------- /tests/test_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/tests/test_report.py -------------------------------------------------------------------------------- /tests/test_vdnc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/tests/test_vdnc.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeS-dev-kit/HEAD/tests/test_version.py --------------------------------------------------------------------------------