René's URL Explorer Experiment


Title: Support for Custom S3 Services with a Custom Root CA · Issue #297 · secureCodeBox/secureCodeBox · GitHub

Open Graph Title: Support for Custom S3 Services with a Custom Root CA · Issue #297 · secureCodeBox/secureCodeBox

X Title: Support for Custom S3 Services with a Custom Root CA · Issue #297 · secureCodeBox/secureCodeBox

Description: As secureCodeBox operations user i would like to integrate and configure custom S3 based persistence services instead of public available services like AWS Buckets, GCP Storage or DO. Is your feature request related to a problem? Please ...

Open Graph Description: As secureCodeBox operations user i would like to integrate and configure custom S3 based persistence services instead of public available services like AWS Buckets, GCP Storage or DO. Is your featu...

X Description: As secureCodeBox operations user i would like to integrate and configure custom S3 based persistence services instead of public available services like AWS Buckets, GCP Storage or DO. Is your featu...

Opengraph URL: https://github.com/secureCodeBox/secureCodeBox/issues/297

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Support for Custom S3 Services with a Custom Root CA","articleBody":"\u003c!--\r\nThank you for reporting an issue in our documentation 🙌\r\n\r\nBefore opening a new issue, please make sure that we do not have any duplicates already open. You can ensure this by searching the issue list for this repository. If there is a duplicate, please close your issue and add a comment to the existing issue instead.\r\n--\u003e\r\nAs secureCodeBox operations user i would like to integrate and configure custom S3 based persistence services instead of public available services like AWS Buckets, GCP Storage or DO. \r\n\r\n**Is your feature request related to a problem? Please describe.**\r\n\u003c!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --\u003e\r\nBy now it is already possible to configure a custom S3 Backend as documented here: \r\n- https://docs.securecodebox.io/docs/getting-started/installation#using-a-hosted-s3-buckets-as-storage-backend\r\n- https://github.com/secureCodeBox/secureCodeBox/tree/main/operator#chart-configuration\r\n\r\nBut one feature is missing in the case of custom/internal S3 Services. It must be possible to add and configure custom root CA's for all secureCodeBox Components (Operator, Scanner, Hooks,...) to ensure a valid TLS based connection, if the custom S3 Service uses non public avaliable certificates.\r\n\r\n**Describe the solution you'd like**\r\n\u003c!-- A clear and concise description of what you want to happen. --\u003e\r\nImplement a configuration Option for all HelmCharts to add a custom Root CA based on a given configMap containing the CA Certificate.\r\n\r\nSCB Components involved here:\r\n\r\n- [x] SCB Operator: https://github.com/secureCodeBox/secureCodeBox/tree/main/operator\r\n- [x] SCB Lurcher: https://github.com/secureCodeBox/secureCodeBox/tree/main/lurcher\r\n- [x] All Scanner Parser ([parseDefinition](https://docs.securecodebox.io/docs/api/crds/parse-definition)):  https://github.com/secureCodeBox/secureCodeBox/tree/main/scanners ...\r\n- [x] All Hooks ([ScanCompletionHook](https://docs.securecodebox.io/docs/api/crds/scan-completion-hook)): https://github.com/secureCodeBox/secureCodeBox/tree/main/hooks ...\r\n\r\n## Implementation Hints:\r\nRegarding the parseDefinition and ScanCompletionHook CRDs we have already implemented the possibility for _ENV_, _Mount_ and _FileMount_ configurations in the corresponding SCB CRD and controller. Additional informations are documented in issue #212.\r\n\r\nWhat is missing here is to add this configuration option to all Scanner and Hooks HelmChart by default. The following hints will guide you through some necessary steps:\r\n\r\n### Hook Hints\r\n#### Existing CRD _ScanCompletionHook_ Definition\r\nhttps://github.com/secureCodeBox/secureCodeBox/blob/3f22b172db08914626e5f199b78d54c93609fccf/operator/apis/execution/v1/scancompletionhook.go#L38-L65\r\n\r\n#### Example Hook HelmChart Value Configuration:\r\nThe following code shows an example how the missing configuration option should look like (for all existing hook charts). Based on https://github.com/secureCodeBox/secureCodeBox/blob/main/hooks/declarative-subsequent-scans/values.yaml\r\n```yaml\r\n# example Hook configuration values\r\nhookJob:\r\n  # hookJob.ttlSecondsAfterFinished -- seconds after which the kubernetes job for the hook will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/\r\n  ttlSecondsAfterFinished: null\r\n  # hookJob.env -- Optional environment variables mapped into each scanJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/)\r\n  env: []\r\n  # hookJob.envFrom -- Optional mount environment variables from configMaps or secrets (see: https://kubernetes.io/docs/tasks/inject-data-application/distribute-credentials-secure/#configure-all-key-value-pairs-in-a-secret-as-container-environment-variables)\r\n  envFrom: []\r\n  # hookJob.extraVolumes -- Optional Volumes mapped into each hookJob (see: https://kubernetes.io/docs/concepts/storage/volumes/)\r\n  extraVolumes:\r\n    - name: ca-workdir\r\n      emptyDir: {}\r\n  # hookJob.extraVolumeMounts -- Optional VolumeMounts mapped into each hookJob (see: https://kubernetes.io/docs/concepts/storage/volumes/)\r\n  extraVolumeMounts:\r\n    - mountPath: /etc/ssl/\r\n      name: ca-workdir\r\n```\r\n\r\n#### Example Hook HelmChart Template implementation:\r\nbased on: https://github.com/secureCodeBox/secureCodeBox/blob/main/hooks/declarative-subsequent-scans/templates/declerative-subsequent-scans-hook.yaml\r\n\r\n```yaml\r\napiVersion: \"execution.securecodebox.io/v1\"\r\nkind: ScanCompletionHook\r\nmetadata:\r\n  name: {{ include \"declarative-subsequent-scans.fullname\" . }}\r\nspec:\r\n  type: ReadOnly\r\n  image: \"{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.Version }}\"\r\n  ttlSecondsAfterFinished: {{ .Values.hookJob.ttlSecondsAfterFinished }}\r\n  serviceAccountName: declarative-combined-scans\r\n  env:  {{ include \" .Values.hookJob.env\" . }}\r\n  volumes:  {{ include \" .Values.hookJob.extraVolumes\" . }}\r\n  volumeMounts:  {{ include \" .Values.hookJob.extraVolumeMounts\" . }}\r\n```\r\n\r\n### Parser Hints\r\n#### Existing CRD _parseType_ Definition\r\nhttps://github.com/secureCodeBox/secureCodeBox/blob/3f22b172db08914626e5f199b78d54c93609fccf/operator/apis/execution/v1/parsedefinition_types.go#L27-L49\r\n\r\n#### Example Scanner HelmChart Value Configuration:\r\nThe following code shows an example how the missing configuration option should look like (for all existing scanner charts). Based on: https://github.com/secureCodeBox/secureCodeBox/blob/main/scanners/amass/values.yaml\r\n\r\n```yaml\r\n# example Scanner (Parser) configuration values\r\nparseJob:\r\n  # parseJob.ttlSecondsAfterFinished -- seconds after which the kubernetes job for the hook will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/\r\n  ttlSecondsAfterFinished: null\r\n  # parseJob.env -- Optional environment variables mapped into each scanJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/)\r\n  env: []\r\n  # parseJob.envFrom -- Optional mount environment variables from configMaps or secrets (see: https://kubernetes.io/docs/tasks/inject-data-application/distribute-credentials-secure/#configure-all-key-value-pairs-in-a-secret-as-container-environment-variables)\r\n  envFrom: []\r\n  # parseJob.extraVolumes -- Optional Volumes mapped into each hookJob (see: https://kubernetes.io/docs/concepts/storage/volumes/)\r\n  extraVolumes:\r\n    - name: ca-workdir\r\n      emptyDir: {}\r\n  # parseJob.extraVolumeMounts -- Optional VolumeMounts mapped into each hookJob (see: https://kubernetes.io/docs/concepts/storage/volumes/)\r\n  extraVolumeMounts:\r\n    - mountPath: /etc/ssl/\r\n      name: ca-workdir\r\n```\r\n#### Example Parser HelmChart Template implementation:\r\nbased on https://github.com/secureCodeBox/secureCodeBox/blob/main/scanners/amass/templates/amass-parse-definition.yaml:\r\n\r\n```yaml\r\napiVersion: \"execution.securecodebox.io/v1\"\r\nkind: ParseDefinition\r\nmetadata:\r\n  name: \"amass-jsonl\"\r\nspec:\r\n  handlesResultsType: amass-jsonl\r\n  image: \"{{ .Values.parserImage.repository }}:{{ .Values.parserImage.tag | default .Chart.Version }}\"\r\n  ttlSecondsAfterFinished: {{ .Values.parseJob.ttlSecondsAfterFinished }}\r\n  env:  {{ include \" .Values.parseJob.env\" . }}\r\n  volumes:  {{ include \" .Values.parseJob.extraVolumes\" . }}\r\n  volumeMounts:  {{ include \" .Values.parseJob.extraVolumeMounts\" . }}\r\n```\r\n\r\n### Operator and Lurcher Hints\r\nThe following code shows an example how the missing configuration option should look like for the operator and lurcher:\r\n\r\n```yaml\r\n# example Lurcher configuration values\r\nlurcher:\r\n  # lurcher.env -- Optional environment variables mapped into the lurcher (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/)\r\n  env: []\r\n  # lurcher.envFrom -- Optional mount environment variables from configMaps or secrets (see: https://kubernetes.io/docs/tasks/inject-data-application/distribute-credentials-secure/#configure-all-key-value-pairs-in-a-secret-as-container-environment-variables)\r\n  envFrom: []\r\n  # lurcher.extraVolumes -- Optional Volumes mapped into the lurcher (see: https://kubernetes.io/docs/concepts/storage/volumes/)\r\n  extraVolumes:\r\n    - name: ca-workdir\r\n      emptyDir: {}\r\n  # lurcher.extraVolumeMounts -- Optional VolumeMounts mapped into the lurcher (see: https://kubernetes.io/docs/concepts/storage/volumes/)\r\n  extraVolumeMounts:\r\n    - mountPath: /etc/ssl/\r\n      name: ca-workdir\r\n\r\n# example Operator configuration values\r\n# env -- Optional environment variables mapped into the operator (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/)\r\nenv: []\r\n# envFrom -- Optional mount environment variables from configMaps or secrets (see: https://kubernetes.io/docs/tasks/inject-data-application/distribute-credentials-secure/#configure-all-key-value-pairs-in-a-secret-as-container-environment-variables)\r\nenvFrom: []\r\n# volumes -- Optional Volumes mapped into the operator (see: https://kubernetes.io/docs/concepts/storage/volumes/)\r\nvolumes:\r\n  - name: ca-workdir\r\n    emptyDir: {}\r\n# volumeMounts -- Optional VolumeMounts mapped into the operator (see: https://kubernetes.io/docs/concepts/storage/volumes/)\r\nvolumeMounts:\r\n  - mountPath: /etc/ssl/\r\n    name: ca-workdir\r\n```\r\n\r\n**Describe alternatives you've considered**\r\n\u003c!-- A clear and concise description of any alternative solutions or features you've considered. --\u003e\r\nnone\r\n\r\n**Additional context**\r\n\u003c!-- Add any other context or screenshots about the feature request here. --\u003e\r\n","author":{"url":"https://github.com/rfelber","@type":"Person","name":"rfelber"},"datePublished":"2021-02-11T13:05:08.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/297/secureCodeBox/issues/297"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:e42f61c9-9889-6393-cd1f-a02600626e71
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idCC3E:68859:1D9605C:25E9818:6990013E
html-safe-nonce8582291b20e676dcf096ee9589e2872d9ae396524f0a7fbdf8b9e371b678067c
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDQzNFOjY4ODU5OjFEOTYwNUM6MjVFOTgxODo2OTkwMDEzRSIsInZpc2l0b3JfaWQiOiI0Mzk2MDczNDA0ODk5MjYyNzgyIiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac2750147bf23b7fd6fdfdb0f4ae74212a32582d6349bd08fa8de4a2612083767d
hovercard-subject-tagissue:806371709
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/secureCodeBox/secureCodeBox/297/issue_layout
twitter:imagehttps://opengraph.githubassets.com/2faee8d8ca13e3a270bfb4009f0f11ab5c8a4d96c280be6071b3c9064ef6f809/secureCodeBox/secureCodeBox/issues/297
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/2faee8d8ca13e3a270bfb4009f0f11ab5c8a4d96c280be6071b3c9064ef6f809/secureCodeBox/secureCodeBox/issues/297
og:image:altAs secureCodeBox operations user i would like to integrate and configure custom S3 based persistence services instead of public available services like AWS Buckets, GCP Storage or DO. Is your featu...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamerfelber
hostnamegithub.com
expected-hostnamegithub.com
None42c603b9d642c4a9065a51770f75e5e27132fef0e858607f5c9cb7e422831a7b
turbo-cache-controlno-preview
go-importgithub.com/secureCodeBox/secureCodeBox git https://github.com/secureCodeBox/secureCodeBox.git
octolytics-dimension-user_id34573705
octolytics-dimension-user_loginsecureCodeBox
octolytics-dimension-repository_id80711933
octolytics-dimension-repository_nwosecureCodeBox/secureCodeBox
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id80711933
octolytics-dimension-repository_network_root_nwosecureCodeBox/secureCodeBox
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release3b33c5aedc9808f45bc5fcf0b1e4404cf749dac7
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/secureCodeBox/secureCodeBox/issues/297#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FsecureCodeBox%2FsecureCodeBox%2Fissues%2F297
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FsecureCodeBox%2FsecureCodeBox%2Fissues%2F297
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=secureCodeBox%2FsecureCodeBox
Reloadhttps://github.com/secureCodeBox/secureCodeBox/issues/297
Reloadhttps://github.com/secureCodeBox/secureCodeBox/issues/297
Reloadhttps://github.com/secureCodeBox/secureCodeBox/issues/297
secureCodeBox https://github.com/secureCodeBox
secureCodeBoxhttps://github.com/secureCodeBox/secureCodeBox
Notifications https://github.com/login?return_to=%2FsecureCodeBox%2FsecureCodeBox
Fork 179 https://github.com/login?return_to=%2FsecureCodeBox%2FsecureCodeBox
Star 955 https://github.com/login?return_to=%2FsecureCodeBox%2FsecureCodeBox
Code https://github.com/secureCodeBox/secureCodeBox
Issues 71 https://github.com/secureCodeBox/secureCodeBox/issues
Pull requests 4 https://github.com/secureCodeBox/secureCodeBox/pulls
Discussions https://github.com/secureCodeBox/secureCodeBox/discussions
Actions https://github.com/secureCodeBox/secureCodeBox/actions
Projects 1 https://github.com/secureCodeBox/secureCodeBox/projects
Security 1 https://github.com/secureCodeBox/secureCodeBox/security
Insights https://github.com/secureCodeBox/secureCodeBox/pulse
Code https://github.com/secureCodeBox/secureCodeBox
Issues https://github.com/secureCodeBox/secureCodeBox/issues
Pull requests https://github.com/secureCodeBox/secureCodeBox/pulls
Discussions https://github.com/secureCodeBox/secureCodeBox/discussions
Actions https://github.com/secureCodeBox/secureCodeBox/actions
Projects https://github.com/secureCodeBox/secureCodeBox/projects
Security https://github.com/secureCodeBox/secureCodeBox/security
Insights https://github.com/secureCodeBox/secureCodeBox/pulse
New issuehttps://github.com/login?return_to=https://github.com/secureCodeBox/secureCodeBox/issues/297
New issuehttps://github.com/login?return_to=https://github.com/secureCodeBox/secureCodeBox/issues/297
Support for Custom S3 Services with a Custom Root CAhttps://github.com/secureCodeBox/secureCodeBox/issues/297#top
https://github.com/nigthknight
enhancementNew feature or requesthttps://github.com/secureCodeBox/secureCodeBox/issues?q=state%3Aopen%20label%3A%22enhancement%22
persistenceImplement or update a persistence storehttps://github.com/secureCodeBox/secureCodeBox/issues?q=state%3Aopen%20label%3A%22persistence%22
https://github.com/rfelber
https://github.com/rfelber
rfelberhttps://github.com/rfelber
on Feb 11, 2021https://github.com/secureCodeBox/secureCodeBox/issues/297#issue-806371709
https://docs.securecodebox.io/docs/getting-started/installation#using-a-hosted-s3-buckets-as-storage-backendhttps://docs.securecodebox.io/docs/getting-started/installation#using-a-hosted-s3-buckets-as-storage-backend
https://github.com/secureCodeBox/secureCodeBox/tree/main/operator#chart-configurationhttps://github.com/secureCodeBox/secureCodeBox/tree/main/operator#chart-configuration
https://github.com/secureCodeBox/secureCodeBox/tree/main/operatorhttps://github.com/secureCodeBox/secureCodeBox/tree/main/operator
https://github.com/secureCodeBox/secureCodeBox/tree/main/lurcherhttps://github.com/secureCodeBox/secureCodeBox/tree/main/lurcher
parseDefinitionhttps://docs.securecodebox.io/docs/api/crds/parse-definition
https://github.com/secureCodeBox/secureCodeBox/tree/main/scannershttps://github.com/secureCodeBox/secureCodeBox/tree/main/scanners
ScanCompletionHookhttps://docs.securecodebox.io/docs/api/crds/scan-completion-hook
https://github.com/secureCodeBox/secureCodeBox/tree/main/hookshttps://github.com/secureCodeBox/secureCodeBox/tree/main/hooks
#212https://github.com/secureCodeBox/secureCodeBox/issues/212
secureCodeBox/operator/apis/execution/v1/scancompletionhook.gohttps://github.com/secureCodeBox/secureCodeBox/blob/3f22b172db08914626e5f199b78d54c93609fccf/operator/apis/execution/v1/scancompletionhook.go#L38-L65
3f22b17https://github.com/secureCodeBox/secureCodeBox/commit/3f22b172db08914626e5f199b78d54c93609fccf
https://github.com/secureCodeBox/secureCodeBox/blob/main/hooks/declarative-subsequent-scans/values.yamlhttps://github.com/secureCodeBox/secureCodeBox/blob/main/hooks/declarative-subsequent-scans/values.yaml
https://github.com/secureCodeBox/secureCodeBox/blob/main/hooks/declarative-subsequent-scans/templates/declerative-subsequent-scans-hook.yamlhttps://github.com/secureCodeBox/secureCodeBox/blob/main/hooks/declarative-subsequent-scans/templates/declerative-subsequent-scans-hook.yaml
secureCodeBox/operator/apis/execution/v1/parsedefinition_types.gohttps://github.com/secureCodeBox/secureCodeBox/blob/3f22b172db08914626e5f199b78d54c93609fccf/operator/apis/execution/v1/parsedefinition_types.go#L27-L49
3f22b17https://github.com/secureCodeBox/secureCodeBox/commit/3f22b172db08914626e5f199b78d54c93609fccf
https://github.com/secureCodeBox/secureCodeBox/blob/main/scanners/amass/values.yamlhttps://github.com/secureCodeBox/secureCodeBox/blob/main/scanners/amass/values.yaml
https://github.com/secureCodeBox/secureCodeBox/blob/main/scanners/amass/templates/amass-parse-definition.yamlhttps://github.com/secureCodeBox/secureCodeBox/blob/main/scanners/amass/templates/amass-parse-definition.yaml
nigthknighthttps://github.com/nigthknight
enhancementNew feature or requesthttps://github.com/secureCodeBox/secureCodeBox/issues?q=state%3Aopen%20label%3A%22enhancement%22
persistenceImplement or update a persistence storehttps://github.com/secureCodeBox/secureCodeBox/issues?q=state%3Aopen%20label%3A%22persistence%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.