-
Notifications
You must be signed in to change notification settings - Fork 22
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
Undetermined reason for undetermined contextual analysis status #155
Changes from all commits
d5c433a
92ed481
6563175
7e21a31
2131ae5
83ecc95
7acda7f
c65d385
58bb739
a443a30
8001482
4d3773f
61962a3
b931f91
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 |
---|---|---|
|
@@ -96,6 +96,7 @@ type CveRow struct { | |
type Applicability struct { | ||
Status string `json:"status"` | ||
ScannerDescription string `json:"scannerDescription,omitempty"` | ||
UndeterminedReason string `json:"undeterminedReason,omitempty"` | ||
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. where do we use it? 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. It is only in simple-json, and it is under CveRow (CveRow has Applicability struct as one of its components, it gets printed automatically) |
||
Evidence []Evidence `json:"evidence,omitempty"` | ||
} | ||
|
||
|
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.
suggest makeing sure that len(values)==len(properties)
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.
right, fixed