├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── publish.yaml ├── .gitignore ├── AISecurityLabSetupGuide.md ├── AISecurityLabUserGuide.md ├── CODEOWNERS.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── adding-new-plugin.md ├── docs ├── Gemfile ├── Gemfile copy ├── Gemfile.lock ├── _config.dev.yml ├── _config.yml ├── _data │ └── navigation.yml ├── _docs │ ├── ai-security-lab-user-guide.md │ ├── configuration.md │ ├── deployment.md │ ├── peronal-lab.md │ ├── private-lab.md │ ├── public-lab.md │ ├── quick-start-guide.md │ └── reduce-turn-around-time.md ├── _pages │ ├── 404.md │ ├── about.md │ ├── home.md │ └── year-archive.md ├── _posts │ └── 2024-05-14-post-exclude-search.md ├── images │ ├── Diagram1HighlevelEnterpriseDeployment.png │ ├── Diagram2BeSLabComponentsLayout.png │ ├── Diagram3BeSLabProjectModelOnboardingWorkflow.png │ ├── Diagram4AssessmentExecutionWorkflow.png │ ├── Diagram5BeSLabVulnerabilityTrackingWorkflow.png │ ├── file.png │ ├── gradient.jpeg │ ├── ms-icon-310x310.png │ ├── personal-lab.png │ ├── plugin3.png │ ├── private-lab.png │ ├── public-lab.png │ ├── settings.png │ ├── startup.png │ └── time.png ├── pumls │ ├── BeSLabAssessmentExecutionWorkflow.puml │ ├── BeSLabComponentsLayout.puml │ ├── BeSLabProjectModelOnboardingWorkflow.puml │ ├── BeSLabVulnerabilityTrackingWorkflow.puml │ ├── HighLevelEnterpriseDeployment.puml │ └── placeholder └── templates │ └── beslab_plugin_template.sh ├── genesis.yaml ├── notebooks └── BeSLab-Private.ipynb └── src ├── besman-bes-tools.sh ├── besman-beslab-env-config.yaml ├── besman-beslab-env.sh ├── besman-beslab-utils.sh ├── besman-beslighthouse.sh ├── besman-fossology.sh ├── besman-github.sh ├── besman-gitlab.sh ├── besman-jfrog-artifactory.sh ├── besman-languages.sh ├── besman-license-compliance.sh ├── besman-log.sh ├── besman-metadata.json ├── besman-opentofu.json ├── besman-package-managers.sh ├── besman-private-artifact-repo.sh ├── besman-public-artifact-repo.sh ├── besman-radius.json ├── besman-sast.sh ├── besman-sbom.sh ├── besman-sonarqube.sh └── besman-vulner.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/.gitignore -------------------------------------------------------------------------------- /AISecurityLabSetupGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/AISecurityLabSetupGuide.md -------------------------------------------------------------------------------- /AISecurityLabUserGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/AISecurityLabUserGuide.md -------------------------------------------------------------------------------- /CODEOWNERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/CODEOWNERS.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/README.md -------------------------------------------------------------------------------- /adding-new-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/adding-new-plugin.md -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/Gemfile copy -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/_config.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/_config.dev.yml -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_data/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/_data/navigation.yml -------------------------------------------------------------------------------- /docs/_docs/ai-security-lab-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/_docs/ai-security-lab-user-guide.md -------------------------------------------------------------------------------- /docs/_docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/_docs/configuration.md -------------------------------------------------------------------------------- /docs/_docs/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/_docs/deployment.md -------------------------------------------------------------------------------- /docs/_docs/peronal-lab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/_docs/peronal-lab.md -------------------------------------------------------------------------------- /docs/_docs/private-lab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/_docs/private-lab.md -------------------------------------------------------------------------------- /docs/_docs/public-lab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/_docs/public-lab.md -------------------------------------------------------------------------------- /docs/_docs/quick-start-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/_docs/quick-start-guide.md -------------------------------------------------------------------------------- /docs/_docs/reduce-turn-around-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/_docs/reduce-turn-around-time.md -------------------------------------------------------------------------------- /docs/_pages/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/_pages/404.md -------------------------------------------------------------------------------- /docs/_pages/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/_pages/about.md -------------------------------------------------------------------------------- /docs/_pages/home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/_pages/home.md -------------------------------------------------------------------------------- /docs/_pages/year-archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/_pages/year-archive.md -------------------------------------------------------------------------------- /docs/_posts/2024-05-14-post-exclude-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/_posts/2024-05-14-post-exclude-search.md -------------------------------------------------------------------------------- /docs/images/Diagram1HighlevelEnterpriseDeployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/images/Diagram1HighlevelEnterpriseDeployment.png -------------------------------------------------------------------------------- /docs/images/Diagram2BeSLabComponentsLayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/images/Diagram2BeSLabComponentsLayout.png -------------------------------------------------------------------------------- /docs/images/Diagram3BeSLabProjectModelOnboardingWorkflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/images/Diagram3BeSLabProjectModelOnboardingWorkflow.png -------------------------------------------------------------------------------- /docs/images/Diagram4AssessmentExecutionWorkflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/images/Diagram4AssessmentExecutionWorkflow.png -------------------------------------------------------------------------------- /docs/images/Diagram5BeSLabVulnerabilityTrackingWorkflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/images/Diagram5BeSLabVulnerabilityTrackingWorkflow.png -------------------------------------------------------------------------------- /docs/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/images/file.png -------------------------------------------------------------------------------- /docs/images/gradient.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/images/gradient.jpeg -------------------------------------------------------------------------------- /docs/images/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/images/ms-icon-310x310.png -------------------------------------------------------------------------------- /docs/images/personal-lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/images/personal-lab.png -------------------------------------------------------------------------------- /docs/images/plugin3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/images/plugin3.png -------------------------------------------------------------------------------- /docs/images/private-lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/images/private-lab.png -------------------------------------------------------------------------------- /docs/images/public-lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/images/public-lab.png -------------------------------------------------------------------------------- /docs/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/images/settings.png -------------------------------------------------------------------------------- /docs/images/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/images/startup.png -------------------------------------------------------------------------------- /docs/images/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/images/time.png -------------------------------------------------------------------------------- /docs/pumls/BeSLabAssessmentExecutionWorkflow.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/pumls/BeSLabAssessmentExecutionWorkflow.puml -------------------------------------------------------------------------------- /docs/pumls/BeSLabComponentsLayout.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/pumls/BeSLabComponentsLayout.puml -------------------------------------------------------------------------------- /docs/pumls/BeSLabProjectModelOnboardingWorkflow.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/pumls/BeSLabProjectModelOnboardingWorkflow.puml -------------------------------------------------------------------------------- /docs/pumls/BeSLabVulnerabilityTrackingWorkflow.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/pumls/BeSLabVulnerabilityTrackingWorkflow.puml -------------------------------------------------------------------------------- /docs/pumls/HighLevelEnterpriseDeployment.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/pumls/HighLevelEnterpriseDeployment.puml -------------------------------------------------------------------------------- /docs/pumls/placeholder: -------------------------------------------------------------------------------- 1 | Blank 2 | -------------------------------------------------------------------------------- /docs/templates/beslab_plugin_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/docs/templates/beslab_plugin_template.sh -------------------------------------------------------------------------------- /genesis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/genesis.yaml -------------------------------------------------------------------------------- /notebooks/BeSLab-Private.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/notebooks/BeSLab-Private.ipynb -------------------------------------------------------------------------------- /src/besman-bes-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-bes-tools.sh -------------------------------------------------------------------------------- /src/besman-beslab-env-config.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/besman-beslab-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-beslab-env.sh -------------------------------------------------------------------------------- /src/besman-beslab-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-beslab-utils.sh -------------------------------------------------------------------------------- /src/besman-beslighthouse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-beslighthouse.sh -------------------------------------------------------------------------------- /src/besman-fossology.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-fossology.sh -------------------------------------------------------------------------------- /src/besman-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-github.sh -------------------------------------------------------------------------------- /src/besman-gitlab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-gitlab.sh -------------------------------------------------------------------------------- /src/besman-jfrog-artifactory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-jfrog-artifactory.sh -------------------------------------------------------------------------------- /src/besman-languages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-languages.sh -------------------------------------------------------------------------------- /src/besman-license-compliance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-license-compliance.sh -------------------------------------------------------------------------------- /src/besman-log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-log.sh -------------------------------------------------------------------------------- /src/besman-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-metadata.json -------------------------------------------------------------------------------- /src/besman-opentofu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-opentofu.json -------------------------------------------------------------------------------- /src/besman-package-managers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-package-managers.sh -------------------------------------------------------------------------------- /src/besman-private-artifact-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-private-artifact-repo.sh -------------------------------------------------------------------------------- /src/besman-public-artifact-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-public-artifact-repo.sh -------------------------------------------------------------------------------- /src/besman-radius.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-radius.json -------------------------------------------------------------------------------- /src/besman-sast.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-sast.sh -------------------------------------------------------------------------------- /src/besman-sbom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-sbom.sh -------------------------------------------------------------------------------- /src/besman-sonarqube.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-sonarqube.sh -------------------------------------------------------------------------------- /src/besman-vulner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Be-Secure/BeSLab/HEAD/src/besman-vulner.json --------------------------------------------------------------------------------