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

NameTypeDescriptionNotes
aslrbool
depbool
cfgbool
driver_modelbool
app_containerbool
terminal_server_awarebool
image_isolationbool
code_integritybool
high_entropybool
sehbool
bound_imagebool

Example

fromrevengai.models.security_modelimportSecurityModel# TODO update the JSON string belowjson="{}"# create an instance of SecurityModel from a JSON stringsecurity_model_instance=SecurityModel.from_json(json)
# print the JSON string representation of the objectprint(SecurityModel.to_json())
# convert the object into a dictsecurity_model_dict=security_model_instance.to_dict()
# create an instance of SecurityModel from a dictsecurity_model_from_dict=SecurityModel.from_dict(security_model_dict)

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