本文整理汇总了Python中cybox.common.HashList.object_from_dict方法的典型用法代码示例。如果您正苦于以下问题:Python HashList.object_from_dict方法的具体用法?Python HashList.object_from_dict怎么用?Python HashList.object_from_dict使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cybox.common.HashList
的用法示例。
在下文中一共展示了HashList.object_from_dict方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: object_from_dict
# 需要导入模块: from cybox.common import HashList [as 别名]
# 或者: from cybox.common.HashList import object_from_dict [as 别名]
def object_from_dict(cls, byterun_dict):
"""Create the ByteRun object representation from an input dictionary"""
byterun_obj = common_types_binding.ByteRunType()
for key, value in byterun_dict.items():
if key == 'offset' :
byterun_obj.set_Offset(Base_Object_Attribute.object_from_dict(common_types_binding.IntegerObjectAttributeType(datatype='Integer'),value))
elif key == 'file_system_offset' :
byterun_obj.set_File_System_Offset(Base_Object_Attribute.object_from_dict(common_types_binding.IntegerObjectAttributeType(datatype='Integer'),value))
elif key == 'image_offset' :
byterun_obj.set_Image_Offset(Base_Object_Attribute.object_from_dict(common_types_binding.IntegerObjectAttributeType(datatype='Integer'),value))
elif key == 'length' :
byterun_obj.set_Offset(Base_Object_Attribute.object_from_dict(common_types_binding.IntegerObjectAttributeType(datatype='Integer'),value))
elif key == 'hashes' :
byterun_obj.set_Hashes(HashList.object_from_dict(value))
elif key == 'byte_run_data':
byterun_obj.set_Byte_Run_Data(value)
return byterun_obj
示例2: object_from_dict
# 需要导入模块: from cybox.common import HashList [as 别名]
# 或者: from cybox.common.HashList import object_from_dict [as 别名]
def object_from_dict(cls, memory_attributes):
"""Create the Memory Object object representation from an input dictionary"""
mem_object = memory_binding.MemoryObjectType()
mem_object.set_anyAttributes_({'xsi:type' : 'MemoryObj:MemoryObjectType'})
for key,value in memory_attributes.items():
if key == 'is_injected' and utils.test_value(value): mem_object.set_is_injected(value.get('value'))
elif key == 'is_mapped' and utils.test_value(value): mem_object.set_is_mapped(value.get('value'))
elif key == 'is_protected' and utils.test_value(value): mem_object.set_is_injected(value.get('value'))
elif key == 'region_start_address' and utils.test_value(value):
mem_object.set_Region_Start_Address(Base_Object_Attribute.object_from_dict(common_types_binding.HexBinaryObjectAttributeType(datatype='hexBinary'),value))
elif key == 'region_size' and utils.test_value(value):
mem_object.set_Region_Size(Base_Object_Attribute.object_from_dict(common_types_binding.UnsignedLongObjectAttributeType(datatype='UnsignedLong'),value))
elif key == 'name' and utils.test_value(value):
mem_object.set_Name(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'),value))
elif key == 'hashes':
mem_object.set_Hashes(HashList.object_from_dict(value))
return mem_object
示例3: object_from_dict
# 需要导入模块: from cybox.common import HashList [as 别名]
# 或者: from cybox.common.HashList import object_from_dict [as 别名]
def object_from_dict(cls, extracted_string_dict):
"""Create the Extracted String object representation from an input dictionary"""
extracted_string_object = common_types_binding.ExtractedStringType()
for key, value in extracted_string_dict.items():
if key == 'encoding' :
extracted_string_object.set_encoding(value.get('value'))
elif key == 'string_value' :
extracted_string_object.set_String_Value(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'),value))
elif key == 'hashes' :
extracted_string_object.set_Hashes(HashList.object_from_dict(value))
elif key == 'address' :
extracted_string_object.set_Address(Base_Object_Attribute.object_from_dict(common_types_binding.HexBinaryObjectAttributeType(datatype='hexBinary'),value))
elif key == 'length' :
extracted_string_object.set_Length(Base_Object_Attribute.object_from_dict(common_types_binding.PositiveIntegerObjectAttributeType(datatype='PositiveInteger'),value))
elif key == 'language' :
extracted_string_object.set_Language(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'),value))
elif key == 'english_translation' :
extracted_string_object.set_English_Translation(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'),value))
return extracted_string_object
示例4: object_from_dict
# 需要导入模块: from cybox.common import HashList [as 别名]
# 或者: from cybox.common.HashList import object_from_dict [as 别名]
def object_from_dict(cls, tool_information_dict):
"""Create the ToolInformation object representation from an input dictionary"""
tool_information_obj = common_types_binding.ToolInformationType()
for key, value in tool_information_dict.items():
if key == 'id' and utils.test_value(value) : tool_information_obj.set_id(value)
elif key == 'idref' and utils.test_value(value) : tool_information_obj.set_idref(value)
elif key == 'description': pass
elif key == 'vendor' and utils.test_value(value): tool_information_obj.set_Vendor(value)
elif key == 'name' and utils.test_value(value): tool_information_obj.set_Name(value)
elif key == 'version' and utils.test_value(value): tool_information_obj.set_Version(value)
elif key == 'service_pack' and utils.test_value(value): tool_information_obj.set_Service_Pack(value)
elif key == 'tool-specific_data' : pass
elif key == 'tool_hashes':
hashes_obj = HashList.object_from_dict(value)
if hashes_obj.hasContent_() : tool_information_obj.set_Tool_Hashes(hashes_obj)
elif key == 'tool_configuration' : pass
elif key == 'execution_environment' : pass
elif key == 'errors' : pass
elif key == 'metadata' : pass
return tool_information_obj
示例5: object_from_dict
# 需要导入模块: from cybox.common import HashList [as 别名]
# 或者: from cybox.common.HashList import object_from_dict [as 别名]
def object_from_dict(cls, task_attributes):
task_obj = win_task_binding.WindowsTaskObjectType()
task_obj.set_anyAttributes_({'xsi:type' : 'WinTaskObj:WindowsTaskObjectType'})
for key, value in task_attributes.items():
if key == 'name' and utils.test_value(value):
task_obj.set_Name(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'), value))
if key == 'status' and utils.test_value(value):
task_obj.set_Status(Base_Object_Attribute.object_from_dict(win_task_binding.TaskStatusType(), value))
if key == 'priority' and utils.test_value(value):
task_obj.set_Priority(Base_Object_Attribute.object_from_dict(win_task_binding.TaskPriorityType(), value))
if key == 'flags' and utils.test_value(value):
task_obj.set_Flags(Base_Object_Attribute.object_from_dict(win_task_binding.TaskFlagType(), value))
if key == 'application_type' and utils.test_value(value):
task_obj.set_Application_Name(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'), value))
if key == 'paramters' and utils.test_value(value):
task_obj.set_Parameters(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'), value))
if key == 'account_name' and utils.test_value(value):
tdfasd;fask_obj.set_Account_Name(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'), value))
if key == 'account_run_level' and utils.test_value(value):
task_obj.set_Account_Run_Level(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'), value))
if key == 'account_Logon_Type' and utils.test_value(value):
task_obj.set_Account_Logon_Type(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'), value))
if key == 'account_name' and utils.test_value(value):
task_obj.set_Account_Name(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'), value))
if key == 'creator' and utils.test_value(value):
task_obj.set_Creator(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'), value))
if key == 'comment' and utils.test_value(value):
task_obj.set_Comment(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'), value))
if key == 'working_directory' and utils.test_value(value):
task_obj.set_Working_Directory(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'), value))
if key == 'creation_date' and utils.test_value(value):
task_obj.set_Creation_Date(Base_Object_Attribute.object_from_dict(common_types_binding.DateTimeObjectAttributeType(datatype='DateTime'), value))
if key == 'most_recent_run_time' and utils.test_value(value):
task_obj.set_Most_Recent_Run_Time(Base_Object_Attribute.object_from_dict(common_types_binding.DateTimeObjectAttributeType(datatype='DateTime'), value))
if key == 'next_run_time' and utils.test_value(value):
task_obj.set_Next_Run_Time(Base_Object_Attribute.object_from_dict(common_types_binding.DateTimeObjectAttributeType(datatype='DateTime'), value))
if key == 'exit_code' and utils.test_value(value):
task_obj.set_Exit_Code(Base_Object_Attribute.object_from_dict(common_types_binding.LongObjectAttributeType(datatype='Long'), value))
if key == 'max_run_time' and utils.test_value(value):
task_obj.set_Max_Run_Time(Base_Object_Attribute.object_from_dict(common_types_binding.UnsignedLongObjectAttributeType(datatype='UnsignedLong'), value))
if key == 'work_item_data' and utils.test_value(value):
task_obj.set_Work_Item_Data(Base_Object_Attribute.object_from_dict(common_types_binding.Base64BinaryObjectAttributeType(datatype='Base64Binary'), value))
if key == 'action_list' and utils.test_value(value):
action_list = win_task_binding.TaskActionListType()
for action in value:
action_obj = win_task_binding.TaskActionType()
for action_key, action_value in action.items():
if action_key == 'action_type' and utils.test_value(action_value):
action_obj.set_Action_Type(Base_Object_Attribute.object_from_dict(win_task_binding.TaskActionTypeType(), action_value))
if action_key == 'action_id' and utils.test_value(action_value):
action_obj.set_Action_ID(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'), action_value))
if action_key == 'iemailaction' and utils.test_value(action_value):
action_obj.set_IEmailAction(EmailMessage.object_from_dict(action_value))
if action_key == 'icomhandleraction' and utils.test_value(action_value):
icom_obj = win_task_binding.IComHandlerActionType()
for icom_key, icom_value in action_value.items():
if icom_key == 'com_data' and utils.test_value(icom_value):
icom_obj.set_COM_Data(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'), icom_value))
if icom_key == 'com_class_id' and utils.test_value(icom_value):
icom_obj.set_COM_Class_ID(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'), icom_value))
action_obj.set_IComHandlerAction(icom_obj)
if action_key == 'iexecaction' and utils.test_value(action_value):
iexec_obj = win_task_binding.IExecActionType()
for iexec_key, iexec_value in action_value.items():
if iexec_key == 'exec_arguments' and utils.test_value(iexec_value):
iexec_obj.set_Exec_Arguments(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'), iexec_value))
if iexec_key == 'exec_program_path' and utils.test_value(iexec_value):
iexec_obj.set_Exec_Program_Path(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'), iexec_value))
if iexec_key == 'exec_working_directorys' and utils.test_value(iexec_value):
iexec_obj.set_Exec_Working_Directory(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'), iexec_value))
if iexec_key == 'exec_program_hashes' and utils.test_value(iexec_value):
iexec_obj.set_Exec_Arguments(HashList.object_from_dict(iexec_value))
action_obj.set_IExecAction(iexec_obj)
if action_key == 'ishowmessageaction' and utils.test_value(action_value):
ishow_obj = win_task_binding.IShowMessageActionType()
for ishow_key, ishow_value in action_value.items():
if ishow_key == 'show_message_body' and utils.test_value(ishow_value):
ishow_obj.set_Show_Message_Body(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'), ishow_value))
if ishow_key == 'show_message_title' and utils.test_value(ishow_value):
ishow_obj.set_Show_Message_Title(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'), ishow_value))
action_obj.set_IShowMessageAction(ishow_obj)
action_list.add_Action(action_obj)
task_obj.set_Action_List(action_list)
if key == 'trigger_list' and utils.test_value(value):
trigger_list = win_task_binding.TriggerListType()
for trigger in value:
trigger_obj = win_task_binding.TriggerType()
for trigger_key, trigger_value in trigger.items():
if trigger_key == 'trigger_begin' and utils.test_value(trigger_value):
trigger_obj.set_Trigger_Begin(common_types_binding.DateTimeObjectAttributeType(datatype='DateTime'), trigger_value)
if trigger_key == 'trigger_end' and utils.test_value(trigger_value):
trigger_obj.set_Trigger_End(common_types_binding.DateTimeObjectAttributeType(datatype='DateTime'), trigger_value)
if trigger_key == 'trigger_delay' and utils.test_value(trigger_value):
trigger_obj.set_Trigger_Begin(common_types_binding.DurationObjectAttributeType(datatype='Duration'), trigger_value)
if trigger_key == 'trigger_max_run_time' and utils.test_value(trigger_value):
trigger_obj.set_Max_Run_Time(common_types_binding.DurationObjectAttributeType(datatype='Duration'), trigger_value)
if trigger_key == 'trigger_session_change_type' and utils.test_value(trigger_value):
trigger_obj.set_Trigger_Session_Change_Type(Base_Object_Attribute.object_from_dict(common_types_binding.StringObjectAttributeType(datatype='String'), trigger_value))
if trigger_key == 'trigger_type' and utils.test_value(trigger_value):
#.........这里部分代码省略.........