-
Notifications
You must be signed in to change notification settings - Fork 2
feat: add security finding issue template #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,81 @@ | ||
| name: Security Finding | ||
| description: Report an automated security scanner finding (for maintainers) | ||
| title: "[security] " | ||
| labels: ["security/triage-needed"] | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| **This template is for automated scanner findings reviewed by maintainers.** | ||
| If you are an external reporter, please use [Private Vulnerability Reporting](https://github.com/cozystack/cozystack/security/advisories/new) or email cncf-cozystack-security@lists.cncf.io instead. | ||
| - type: input | ||
| id: cve | ||
| attributes: | ||
| label: CVE ID | ||
| placeholder: CVE-YYYY-NNNNN | ||
| validations: | ||
| required: true | ||
|
Comment on lines
+11
to
+17
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The - type: input
id: vulnerability_id
attributes:
label: Vulnerability ID
placeholder: "e.g., CVE-YYYY-NNNNN or GHSA-xxxx-xxxx-xxxx"
validations:
required: true |
||
| - type: dropdown | ||
| id: severity | ||
| attributes: | ||
| label: Severity | ||
| options: | ||
| - Critical | ||
| - High | ||
| - Medium | ||
| - Low | ||
| validations: | ||
| required: true | ||
| - type: input | ||
| id: package | ||
| attributes: | ||
| label: Affected package | ||
| placeholder: "e.g., libcrypto3, stdlib, redis" | ||
| validations: | ||
| required: true | ||
| - type: input | ||
| id: installed_version | ||
| attributes: | ||
| label: Installed version | ||
| placeholder: "e.g., 3.5.1-r0" | ||
| - type: input | ||
| id: fixed_version | ||
| attributes: | ||
| label: Fixed version | ||
| placeholder: "e.g., 3.5.5-r0 (or 'none available')" | ||
| - type: textarea | ||
| id: affected_components | ||
| attributes: | ||
| label: Affected Cozystack components | ||
| placeholder: | | ||
| - packages/system/velero | ||
| - packages/apps/postgres | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: description | ||
| attributes: | ||
| label: Description | ||
| placeholder: Brief description of the vulnerability and its impact | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: references | ||
| attributes: | ||
| label: References | ||
| placeholder: | | ||
| - https://nvd.nist.gov/vuln/detail/CVE-YYYY-NNNNN | ||
| - https://github.com/advisories/GHSA-XXXX | ||
| - type: dropdown | ||
| id: triage_status | ||
| attributes: | ||
| label: Triage status | ||
| options: | ||
| - new (needs triage) | ||
| - confirmed | ||
| - false-positive | ||
| - accepted-risk | ||
| - in-progress | ||
| - fixed | ||
| validations: | ||
| required: true | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The default title
[security]is very minimal. Providing a suggested format in the title field can help maintainers create consistent and searchable issue titles across the repository.