Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 2.13 KB

ApiExploitV3Result.md

File metadata and controls

47 lines (38 loc) · 2.13 KB

ApiExploitV3Result

Properties

Name Type Description Notes
timestamp str ignore this field when checking for differences/changes [optional]
commercial_exploit_found bool [optional]
counts ApiExploitsV3Count [optional]
date_added str [optional]
epss ApiEPSS exclude EPSS from changelog [optional]
exploits List[ApiNormalizedExploitV3Entry] [optional]
id str [optional]
in_kev bool [optional]
in_vckev bool [optional]
max_exploit_maturity str [optional]
public_exploit_found bool [optional]
reported_exploitation List[ApiNormalizedReportV3Entry] [optional]
reported_exploited bool [optional]
reported_exploited_by_botnets bool [optional]
reported_exploited_by_ransomware bool [optional]
reported_exploited_by_threat_actors bool [optional]
timeline ApiExploitsV3Timeline [optional]
trending ApiExploitsTrending [optional]
weaponized_exploit_found bool [optional]

Example

from vulncheck_sdk.models.api_exploit_v3_result import ApiExploitV3Result

# TODO update the JSON string below
json = "{}"
# create an instance of ApiExploitV3Result from a JSON string
api_exploit_v3_result_instance = ApiExploitV3Result.from_json(json)
# print the JSON string representation of the object
print(ApiExploitV3Result.to_json())

# convert the object into a dict
api_exploit_v3_result_dict = api_exploit_v3_result_instance.to_dict()
# create an instance of ApiExploitV3Result from a dict
api_exploit_v3_result_from_dict = ApiExploitV3Result.from_dict(api_exploit_v3_result_dict)

[Back to Model list] [Back to API list] [Back to README]