Skip to content
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

Adding Exploit Availability field to the vulnerability object #777

Merged
merged 4 commits into from
Sep 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions dictionary.json
Original file line number Diff line number Diff line change
Expand Up @@ -1698,6 +1698,11 @@
"description": "The indication of whether the value is from a default value name. For example, the value name could be missing.",
"type": "boolean_t"
},
"is_exploit_available":{
"caption": "Exploit Availability",
"description": "Indicates if an exploit or a PoC (proof-of-concept) is available for the reported vulnerability.",
"type": "boolean_t"
},
"is_managed": {
"caption": "Managed Device",
"description": "The event occurred on a managed device.",
Expand Down
3 changes: 3 additions & 0 deletions objects/vulnerability.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
"description": "The description of the vulnerability.",
"requirement": "optional"
},
"is_exploit_available":{
"requirement": "optional"
},
"first_seen_time": {
"description": "The time when the vulnerability was first observed.",
"requirement": "optional"
Expand Down
Loading