Name |
Type |
Description |
Notes |
advisory |
str |
|
[optional] |
affected_versions |
str |
|
[optional] |
analysis_url |
str |
|
[optional] |
bug_introducing_change_list_url |
str |
|
[optional] |
claimed_attribution |
str |
|
[optional] |
claimed_attribution_url |
str |
|
[optional] |
cve |
List[str] |
|
[optional] |
date_added |
str |
|
[optional] |
date_discovered |
str |
|
[optional] |
date_patched |
str |
|
[optional] |
description |
str |
|
[optional] |
first_patched_version |
str |
|
[optional] |
patch_change_list_url |
str |
|
[optional] |
product |
str |
|
[optional] |
reported_by |
str |
|
[optional] |
root_cause_analysis_url |
str |
|
[optional] |
vendor |
str |
|
[optional] |
vulnerability_type |
str |
|
[optional] |
from vulncheck_sdk.models.advisory_itw_exploit import AdvisoryITWExploit
# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryITWExploit from a JSON string
advisory_itw_exploit_instance = AdvisoryITWExploit.from_json(json)
# print the JSON string representation of the object
print(AdvisoryITWExploit.to_json())
# convert the object into a dict
advisory_itw_exploit_dict = advisory_itw_exploit_instance.to_dict()
# create an instance of AdvisoryITWExploit from a dict
advisory_itw_exploit_from_dict = AdvisoryITWExploit.from_dict(advisory_itw_exploit_dict)
[Back to Model list] [Back to API list] [Back to README]