Skip to content

Commit 2762538

Browse files
neildgopherbot
authored andcommitted
all: require cve_metadata for first-party reports
For first-party reports, we usually assign the CVE. Add a lint check to make sure cve_metadata is set. Add a no_cve_metadata bool to reports for the case when the CVE was externally assigned. Change-Id: I151c901302f62f53bfec880ce6359586d8d61439 Reviewed-on: https://go-review.googlesource.com/c/vulndb/+/716180 LUCI-TryBot-Result: Go LUCI <[email protected]> Auto-Submit: Damien Neil <[email protected]> Reviewed-by: Roland Shoemaker <[email protected]>
1 parent 36dff84 commit 2762538

File tree

84 files changed

+167
-21
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+167
-21
lines changed

data/reports/GO-2021-0067.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ references:
2323
- fix: https://go.googlesource.com/go/+/cd3b4ca9f20fd14187ed4cdfdee1a02ea87e5cd8
2424
- report: https://go.dev/issue/44916
2525
- web: https://groups.google.com/g/golang-announce/c/MfiLYjG-RAw/m/zzhWj5jPAQAJ
26+
no_cve_metadata: true
2627
review_status: REVIEWED

data/reports/GO-2021-0068.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,5 @@ references:
2828
- web: https://groups.google.com/g/golang-announce/c/mperVMGa98w/m/yo5W5wnvAAAJ
2929
- fix: https://go.dev/cl/284780
3030
- fix: https://go.googlesource.com/go/+/46e2e2e9d99925bbf724b12693c6d3e27a95d6a0
31+
no_cve_metadata: true
3132
review_status: REVIEWED

data/reports/GO-2021-0069.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ references:
2424
- fix: https://go.googlesource.com/go/+/1e1fa5903b760c6714ba17e50bf850b01f49135c
2525
- report: https://go.dev/issue/42552
2626
- web: https://groups.google.com/g/golang-announce/c/NpBGTTmKzpM/m/fLguyiM2CAAJ
27+
no_cve_metadata: true
2728
review_status: REVIEWED

data/reports/GO-2021-0142.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,5 @@ references:
3636
- fix: https://go.googlesource.com/go/+/027d7241ce050d197e7fabea3d541ffbe3487258
3737
- report: https://go.dev/issue/40618
3838
- web: https://groups.google.com/g/golang-announce/c/NyPIaucMgXo
39+
no_cve_metadata: true
3940
review_status: REVIEWED

data/reports/GO-2021-0154.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,5 @@ references:
2929
- fix: https://go.dev/cl/148080043
3030
- report: https://go.dev/issue/53085
3131
- web: https://groups.google.com/g/golang-nuts/c/eeOHNw_shwU/m/OHALUmroA5kJ
32+
no_cve_metadata: true
3233
review_status: REVIEWED

data/reports/GO-2021-0159.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,5 @@ references:
4242
- report: https://go.dev/issue/12027
4343
- report: https://go.dev/issue/11930
4444
- web: https://groups.google.com/g/golang-announce/c/iSIyW4lM4hY/m/ADuQR4DiDwAJ
45+
no_cve_metadata: true
4546
review_status: REVIEWED

data/reports/GO-2021-0160.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,5 @@ references:
4444
- fix: https://go.dev/cl/17672
4545
- report: https://go.dev/issue/13515
4646
- web: https://groups.google.com/g/golang-announce/c/MEATuOi_ei4
47+
no_cve_metadata: true
4748
review_status: REVIEWED

data/reports/GO-2021-0163.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ references:
2424
- fix: https://go.googlesource.com/go/+/6a0bb87bd0bf0fdf8ddbd35f77a75ebd412f61b0
2525
- report: https://go.dev/issue/14959
2626
- web: https://groups.google.com/g/golang-announce/c/9eqIHqaWvck
27+
no_cve_metadata: true
2728
review_status: REVIEWED

data/reports/GO-2021-0172.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@ references:
2626
- fix: https://go.googlesource.com/go/+/7478ea5dba7ed02ddffd91c1d17ec8141f7cf184
2727
- report: https://go.dev/issue/16296
2828
- web: https://groups.google.com/g/golang-dev/c/4NdLzS8sls8/m/uIz8QlnIBQAJ
29+
no_cve_metadata: true
2930
review_status: REVIEWED

data/reports/GO-2021-0178.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,5 @@ references:
2727
- fix: https://go.googlesource.com/go/+/ec3b6131de8f9c9c25283260c95c616c74f6d790
2828
- report: https://go.dev/issue/22134
2929
- web: https://groups.google.com/g/golang-dev/c/RinSE3EiJBI/m/kYL7zb07AgAJ
30+
no_cve_metadata: true
3031
review_status: REVIEWED

0 commit comments

Comments
 (0)