Name |
Type |
Description |
Notes |
cisa_kev_date_added |
str |
|
[optional] |
cisa_kev_date_due |
str |
|
[optional] |
first_exploit_published |
str |
|
[optional] |
first_exploit_published_weaponized_or_higher |
str |
|
[optional] |
first_reported_botnet |
str |
|
[optional] |
first_reported_ransomware |
str |
|
[optional] |
first_reported_threat_actor |
str |
|
[optional] |
most_recent_exploit_published |
str |
|
[optional] |
most_recent_reported_botnet |
str |
|
[optional] |
most_recent_reported_ransomware |
str |
|
[optional] |
most_recent_reported_threat_actor |
str |
|
[optional] |
nvd_last_modified |
str |
it's often the case the nvd record was updated, but in a way that is irrelevant to the contents of a vc exploits record. |
[optional] |
nvd_published |
str |
|
[optional] |
vulncheck_kev_date_added |
str |
|
[optional] |
vulncheck_kev_date_due |
str |
|
[optional] |
from vulncheck_sdk.models.api_exploits_v3_timeline import ApiExploitsV3Timeline
# TODO update the JSON string below
json = "{}"
# create an instance of ApiExploitsV3Timeline from a JSON string
api_exploits_v3_timeline_instance = ApiExploitsV3Timeline.from_json(json)
# print the JSON string representation of the object
print(ApiExploitsV3Timeline.to_json())
# convert the object into a dict
api_exploits_v3_timeline_dict = api_exploits_v3_timeline_instance.to_dict()
# create an instance of ApiExploitsV3Timeline from a dict
api_exploits_v3_timeline_from_dict = ApiExploitsV3Timeline.from_dict(api_exploits_v3_timeline_dict)
[Back to Model list] [Back to API list] [Back to README]