Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.89 KB

AdvisoryShadowServerExploitedVulnerability.md

File metadata and controls

44 lines (35 loc) · 1.89 KB

AdvisoryShadowServerExploitedVulnerability

Properties

Name Type Description Notes
cnvd str [optional]
cve List[str] [optional]
date_added str [optional]
detections_last_1_day int [optional]
detections_last_30_days int [optional]
detections_last_7_days int [optional]
detections_last_90_days int [optional]
edb str [optional]
in_kev bool [optional]
is_iot bool [optional]
is_ransomware bool [optional]
product str [optional]
url str [optional]
vendor str [optional]
vulnerability_id str [optional]
vulnerability_link str [optional]

Example

from vulncheck_sdk.models.advisory_shadow_server_exploited_vulnerability import AdvisoryShadowServerExploitedVulnerability

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

# convert the object into a dict
advisory_shadow_server_exploited_vulnerability_dict = advisory_shadow_server_exploited_vulnerability_instance.to_dict()
# create an instance of AdvisoryShadowServerExploitedVulnerability from a dict
advisory_shadow_server_exploited_vulnerability_from_dict = AdvisoryShadowServerExploitedVulnerability.from_dict(advisory_shadow_server_exploited_vulnerability_dict)

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