| 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 | | |
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]