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