diff options
author | 2020-09-29 22:09:36 +0000 | |
---|---|---|
committer | 2020-09-29 22:28:18 +0000 | |
commit | 2598c9b3503cc8b5fd7c2be87d3fafd6e531fa63 (patch) | |
tree | d3635c3d97a6887897e2521dedc0aeaa3bc294ad /cc | |
parent | 025ae97b0e6fdd59a8c3aa2f9f55bd1f6763b805 (diff) |
add acknowledgements field to fuzz_config
This will be used to track who should be recognized for any CVEs
resulting from bugs found by a fuzz target.
Bug: 145745999
Test: n/a
Change-Id: I21e065ab8013d013b1d9f42981c729b996163387
Diffstat (limited to 'cc')
-rw-r--r-- | cc/fuzz.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cc/fuzz.go b/cc/fuzz.go index 529541859..045384718 100644 --- a/cc/fuzz.go +++ b/cc/fuzz.go @@ -38,6 +38,9 @@ type FuzzConfig struct { // Specify whether this fuzz target was submitted by a researcher. Defaults // to false. Researcher_submitted *bool `json:"researcher_submitted,omitempty"` + // Specify who should be acknowledged for CVEs in the Android Security + // Bulletin. + Acknowledgement []string `json:"acknowledgement,omitempty"` } func (f *FuzzConfig) String() string { |