Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.16 KB

File metadata and controls

39 lines (30 loc) · 1.16 KB

SecurityModel

Properties

Name Type Description Notes
aslr bool
dep bool
cfg bool
driver_model bool
app_container bool
terminal_server_aware bool
image_isolation bool
code_integrity bool
high_entropy bool
seh bool
bound_image bool

Example

from revengai.models.security_model import SecurityModel

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

# convert the object into a dict
security_model_dict = security_model_instance.to_dict()
# create an instance of SecurityModel from a dict
security_model_from_dict = SecurityModel.from_dict(security_model_dict)

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