René's URL Explorer Experiment


Title: ⚙️ Add a generic (SCB) finding importer to the DefectDojo Integration Hook · Issue #332 · secureCodeBox/secureCodeBox · GitHub

Open Graph Title: ⚙️ Add a generic (SCB) finding importer to the DefectDojo Integration Hook · Issue #332 · secureCodeBox/secureCodeBox

X Title: ⚙️ Add a generic (SCB) finding importer to the DefectDojo Integration Hook · Issue #332 · secureCodeBox/secureCodeBox

Description: Is your feature request related to a problem? As secureCodeBox (SCB) user i would like to use all integrated security scanners and examine their results in OWASP DefectDojo (DD), when i use DD as vulnerability management tool in my envir...

Open Graph Description: Is your feature request related to a problem? As secureCodeBox (SCB) user i would like to use all integrated security scanners and examine their results in OWASP DefectDojo (DD), when i use DD as v...

X Description: Is your feature request related to a problem? As secureCodeBox (SCB) user i would like to use all integrated security scanners and examine their results in OWASP DefectDojo (DD), when i use DD as v...

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

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"⚙️ Add a generic (SCB) finding importer to the DefectDojo Integration Hook","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\n\r\n## Is your feature request related to a problem?\r\n\u003c!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --\u003e\r\nAs secureCodeBox (SCB) user i would like to use [all integrated security scanners](https://docs.securecodebox.io/docs/scanners) and examine their results in [OWASP DefectDojo](https://github.com/DefectDojo/django-DefectDojo) (DD), when i use DD as vulnerability management tool in my environment. \r\nWith the latest PR #300  introducing the [**DefectDojo-Persistence Hook**](https://docs.securecodebox.io/docs/hooks/defectdojo) it is now already possible to import some SCB scanner findings supported by DefectDojo:\r\n\r\nhttps://github.com/secureCodeBox/secureCodeBox/blob/0257ddaa07540381d3a056a7cc7b7fc740926f43/hooks/persistence-defectdojo/src/main/java/io/securecodebox/persistence/util/ScanNameMapping.java#L23-L34\r\n\r\nProblem is that there are some scanners missing which are already integrated within secureCodeBox but have no corresponding parser at OWASP DefectDojo. Thats why i'm currently not able to import and analyse the following scanner finding results. Using those scanners in combination with the [**DefectDojo-Persistence Hook**](https://docs.securecodebox.io/docs/hooks/defectdojo) leads to failed scans:\r\n- WPScan\r\n- SSH-Scan\r\n- Nikto (in JSON format instead of XML)\r\n- Kube-Hunter\r\n- Kubeaudit\r\n\r\n### Example failure\r\nExample `scan` with `kube-hunter`:\r\n```bash\r\nk tree scan kube-hunter-internal-1616236981 -n demo-scans\r\nNAMESPACE   NAME                                                                 READY  REASON              AGE\r\ndemo-scans  Scan/kube-hunter-internal-1616236981                                 -                          96m\r\ndemo-scans  ├─Job/defectdojo-hook-kube-hunter-internal-1616236981-hwnhw          -                          95m\r\ndemo-scans  │ ├─Pod/defectdojo-hook-kube-hunter-internal-1616236981-hwnhw-8cthv  False  ContainersNotReady  95m\r\ndemo-scans  │ ├─Pod/defectdojo-hook-kube-hunter-internal-1616236981-hwnhw-gjdz6  False  ContainersNotReady  95m\r\ndemo-scans  │ ├─Pod/defectdojo-hook-kube-hunter-internal-1616236981-hwnhw-hf26w  False  ContainersNotReady  93m\r\ndemo-scans  │ └─Pod/defectdojo-hook-kube-hunter-internal-1616236981-hwnhw-xdszp  False  ContainersNotReady  94m\r\ndemo-scans  └─Job/parse-kube-hunter-internal-1616236981-qnwc8                    -                          95m\r\ndemo-scans    └─Pod/parse-kube-hunter-internal-1616236981-qnwc8-wm4ls            False  PodCompleted        95m\r\n```\r\nExample `defectdojo-hook` log:\r\n```bash\r\n2021-03-20 10:45:42 DEBUG RestTemplate:147 - Accept=[text/plain, application/json, application/*+json, */*]\r\n2021-03-20 10:45:42 DEBUG RestTemplate:147 - Response 200 OK\r\n2021-03-20 10:45:42 DEBUG RestTemplate:147 - Reading to [java.lang.String] as \"application/octet-stream\"\r\n2021-03-20 10:45:42 DEBUG VersionedEngagementsStrategy:99 - Finished Downloading Scan Report (RawResults)\r\nException in thread \"main\" java.lang.IllegalArgumentException: No Mapping found for ScanType 'kube-hunter'\r\n\tat io.securecodebox.persistence.util.ScanNameMapping.bySecureCodeBoxScanType(ScanNameMapping.java:60)\r\n\tat io.securecodebox.persistence.strategies.VersionedEngagementsStrategy.createTest(VersionedEngagementsStrategy.java:259)\r\n\tat io.securecodebox.persistence.strategies.VersionedEngagementsStrategy.run(VersionedEngagementsStrategy.java:101)\r\n\tat io.securecodebox.persistence.DefectDojoPersistenceProvider.main(DefectDojoPersistenceProvider.java:53)\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\nThe following alternative solutions are only focussed on the missing parser problem:\r\nThere are multiple solution strategies to solve this problem:\r\n\r\n1.  Use the _[generic CSV findings importer](https://defectdojo.readthedocs.io/en/latest/integrations.html#generic-findings-import)_ to implement a generic SCB findings import in the [**DefectDojo-Persistence Hook**](https://docs.securecodebox.io/docs/hooks/defectdojo)\r\n```java\r\npublic enum ScanNameMapping {\r\n  NMAP(\"nmap\", ScanType.NMAP_SCAN),\r\n  ZAP_BASELINE(\"zap-baseline\", ScanType.ZAP_SCAN),\r\n  ZAP_API_SCAN(\"zap-api-scan\", ScanType.ZAP_SCAN),\r\n  ZAP_FULL_SCAN(\"zap-full-scan\", ScanType.ZAP_SCAN),\r\n  SSLYZE(\"sslyze\", ScanType.SS_LYZE_3_SCAN_JSON),\r\n  TRIVY(\"trivy\", ScanType.TRIVY_SCAN),\r\n  GITLEAKS(\"gitleaks\", ScanType.GITLEAKS_SCAN),\r\n  // New Approach\r\n  // NIKTO(\"nikto\", ScanType.GENERIC_CSV_SCAN),\r\n  // SSH(\"ssh-scan, ScanType.GENERIC_CSV_SCAN),\r\n  ;\r\n```\r\n* You will find the existing generic CSV DefectDojo parser here: https://github.com/DefectDojo/django-DefectDojo/tree/master/dojo/tools/generic \r\n2. Implement _a new generic JSON Findings Importer_ in OWASP DefectDojo as already suggested here https://github.com/DefectDojo/django-DefectDojo/issues/3798  and use it to implement a generic SCB findings import in the [**DefectDojo-Persistence Hook**](https://docs.securecodebox.io/docs/hooks/defectdojo)\r\n```java\r\npublic enum ScanNameMapping {\r\n  NMAP(\"nmap\", ScanType.NMAP_SCAN),\r\n  ZAP_BASELINE(\"zap-baseline\", ScanType.ZAP_SCAN),\r\n  ZAP_API_SCAN(\"zap-api-scan\", ScanType.ZAP_SCAN),\r\n  ZAP_FULL_SCAN(\"zap-full-scan\", ScanType.ZAP_SCAN),\r\n  SSLYZE(\"sslyze\", ScanType.SS_LYZE_3_SCAN_JSON),\r\n  TRIVY(\"trivy\", ScanType.TRIVY_SCAN),\r\n  GITLEAKS(\"gitleaks\", ScanType.GITLEAKS_SCAN),\r\n  // New Approach\r\n  // NIKTO(\"nikto\", ScanType.GENERIC_JSON_SCAN),\r\n  // SSH(\"ssh-scan, ScanType.GENERIC_JSON_SCAN),\r\n  ;\r\n```\r\n* Such a new generic JSON DefectDojo parser should be implemented here: https://github.com/DefectDojo/django-DefectDojo/tree/master/dojo/tools/ \r\n3. Implement _a new generic SCB JSON Findings Importer_ in OWASP DefectDojo which is based on the secureCodeBox specific findings format and use it to import them in the [**DefectDojo-Persistence Hook**](https://docs.securecodebox.io/docs/hooks/defectdojo)\r\n```java\r\npublic enum ScanNameMapping {\r\n  NMAP(\"nmap\", ScanType.NMAP_SCAN),\r\n  ZAP_BASELINE(\"zap-baseline\", ScanType.ZAP_SCAN),\r\n  ZAP_API_SCAN(\"zap-api-scan\", ScanType.ZAP_SCAN),\r\n  ZAP_FULL_SCAN(\"zap-full-scan\", ScanType.ZAP_SCAN),\r\n  SSLYZE(\"sslyze\", ScanType.SS_LYZE_3_SCAN_JSON),\r\n  TRIVY(\"trivy\", ScanType.TRIVY_SCAN),\r\n  GITLEAKS(\"gitleaks\", ScanType.GITLEAKS_SCAN),\r\n  // New Approach\r\n  // NIKTO(\"nikto\", ScanType.GENERIC_SCB_SCAN),\r\n  // SSH(\"ssh-scan, ScanType.GENERIC_SCB_SCAN),\r\n  ;\r\n```\r\n* Such a new generic SCB DefectDojo parser should be implemented here: https://github.com/DefectDojo/django-DefectDojo/tree/master/dojo/tools/ \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\nI would prefer the solution alternative 3 because it seems to be a clean integration strategy. Both OWASP projects (secureCodeBox and DefectDojo) would have advantages.\r\n\r\n**Additional context**\r\n\u003c!-- Add any other context or screenshots about the feature request here. --\u003e\r\n- Documentation of all currently supported security scanner parsers implemented by OWASP DefectDojo: https://defectdojo.readthedocs.io/en/latest/integrations.html \r\n- secureCodeBox Java Client for DefectDojo: https://github.com/secureCodeBox/defectdojo-client-java","author":{"url":"https://github.com/rfelber","@type":"Person","name":"rfelber"},"datePublished":"2021-03-20T12:40:50.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":10},"url":"https://github.com/332/secureCodeBox/issues/332"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:5b3cb9b1-83e2-30bd-b1b3-b0dc24df68ae
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id859C:2C5CB1:4B504E:6959E0:69777A34
html-safe-noncea07c0fef8eac936226005acbb141406eda256ce401854a7180b00c84e82fe518
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4NTlDOjJDNUNCMTo0QjUwNEU6Njk1OUUwOjY5Nzc3QTM0IiwidmlzaXRvcl9pZCI6IjI2MTUxNTE1MzE4NDU0NTAyOTIiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacc0076654dd5b6f523cb8b710c05d51b87dfed0aeaedabb7be047fef357e0d384
hovercard-subject-tagissue:836798854
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/332/issue_layout
twitter:imagehttps://opengraph.githubassets.com/92c7c29d9773e7f55183cdc5dfc84cedae966d78284b15560dd3af61a5994dc5/secureCodeBox/secureCodeBox/issues/332
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/92c7c29d9773e7f55183cdc5dfc84cedae966d78284b15560dd3af61a5994dc5/secureCodeBox/secureCodeBox/issues/332
og:image:altIs your feature request related to a problem? As secureCodeBox (SCB) user i would like to use all integrated security scanners and examine their results in OWASP DefectDojo (DD), when i use DD as v...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamerfelber
hostnamegithub.com
expected-hostnamegithub.com
None9fea6af76c6e24ca5c5728a18d4220d768790d04abe1ba6aafa18526daff96e7
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
release0bc7a371bc0035e2253b0269926586e60cf8a4ac
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/secureCodeBox/secureCodeBox/issues/332#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FsecureCodeBox%2FsecureCodeBox%2Fissues%2F332
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%2F332
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/332
Reloadhttps://github.com/secureCodeBox/secureCodeBox/issues/332
Reloadhttps://github.com/secureCodeBox/secureCodeBox/issues/332
secureCodeBox https://github.com/secureCodeBox
secureCodeBoxhttps://github.com/secureCodeBox/secureCodeBox
Notifications https://github.com/login?return_to=%2FsecureCodeBox%2FsecureCodeBox
Fork 175 https://github.com/login?return_to=%2FsecureCodeBox%2FsecureCodeBox
Star 941 https://github.com/login?return_to=%2FsecureCodeBox%2FsecureCodeBox
Code https://github.com/secureCodeBox/secureCodeBox
Issues 72 https://github.com/secureCodeBox/secureCodeBox/issues
Pull requests 3 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/332
New issuehttps://github.com/login?return_to=https://github.com/secureCodeBox/secureCodeBox/issues/332
#487https://github.com/secureCodeBox/secureCodeBox/pull/487
⚙️ Add a generic (SCB) finding importer to the DefectDojo Integration Hookhttps://github.com/secureCodeBox/secureCodeBox/issues/332#top
#487https://github.com/secureCodeBox/secureCodeBox/pull/487
https://github.com/JohannesZahn
defectdojoAll issues regarding the DefectDojo Integrationhttps://github.com/secureCodeBox/secureCodeBox/issues?q=state%3Aopen%20label%3A%22defectdojo%22
persistenceImplement or update a persistence storehttps://github.com/secureCodeBox/secureCodeBox/issues?q=state%3Aopen%20label%3A%22persistence%22
pythonIssues based on python implementationshttps://github.com/secureCodeBox/secureCodeBox/issues?q=state%3Aopen%20label%3A%22python%22
v3.0.0https://github.com/secureCodeBox/secureCodeBox/milestone/8
https://github.com/rfelber
https://github.com/rfelber
rfelberhttps://github.com/rfelber
on Mar 20, 2021https://github.com/secureCodeBox/secureCodeBox/issues/332#issue-836798854
all integrated security scannershttps://docs.securecodebox.io/docs/scanners
OWASP DefectDojohttps://github.com/DefectDojo/django-DefectDojo
#300https://github.com/secureCodeBox/secureCodeBox/pull/300
DefectDojo-Persistence Hookhttps://docs.securecodebox.io/docs/hooks/defectdojo
secureCodeBox/hooks/persistence-defectdojo/src/main/java/io/securecodebox/persistence/util/ScanNameMapping.javahttps://github.com/secureCodeBox/secureCodeBox/blob/0257ddaa07540381d3a056a7cc7b7fc740926f43/hooks/persistence-defectdojo/src/main/java/io/securecodebox/persistence/util/ScanNameMapping.java#L23-L34
0257ddahttps://github.com/secureCodeBox/secureCodeBox/commit/0257ddaa07540381d3a056a7cc7b7fc740926f43
DefectDojo-Persistence Hookhttps://docs.securecodebox.io/docs/hooks/defectdojo
generic CSV findings importerhttps://defectdojo.readthedocs.io/en/latest/integrations.html#generic-findings-import
DefectDojo-Persistence Hookhttps://docs.securecodebox.io/docs/hooks/defectdojo
https://github.com/DefectDojo/django-DefectDojo/tree/master/dojo/tools/generichttps://github.com/DefectDojo/django-DefectDojo/tree/master/dojo/tools/generic
Add Generic JSON importer DefectDojo/django-DefectDojo#3798https://github.com/DefectDojo/django-DefectDojo/issues/3798
DefectDojo-Persistence Hookhttps://docs.securecodebox.io/docs/hooks/defectdojo
https://github.com/DefectDojo/django-DefectDojo/tree/master/dojo/tools/https://github.com/DefectDojo/django-DefectDojo/tree/master/dojo/tools/
DefectDojo-Persistence Hookhttps://docs.securecodebox.io/docs/hooks/defectdojo
https://github.com/DefectDojo/django-DefectDojo/tree/master/dojo/tools/https://github.com/DefectDojo/django-DefectDojo/tree/master/dojo/tools/
https://defectdojo.readthedocs.io/en/latest/integrations.htmlhttps://defectdojo.readthedocs.io/en/latest/integrations.html
https://github.com/secureCodeBox/defectdojo-client-javahttps://github.com/secureCodeBox/defectdojo-client-java
JohannesZahnhttps://github.com/JohannesZahn
defectdojoAll issues regarding the DefectDojo Integrationhttps://github.com/secureCodeBox/secureCodeBox/issues?q=state%3Aopen%20label%3A%22defectdojo%22
persistenceImplement or update a persistence storehttps://github.com/secureCodeBox/secureCodeBox/issues?q=state%3Aopen%20label%3A%22persistence%22
pythonIssues based on python implementationshttps://github.com/secureCodeBox/secureCodeBox/issues?q=state%3Aopen%20label%3A%22python%22
v3.0.0https://github.com/secureCodeBox/secureCodeBox/milestone/8
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.