def from_obj(analysis_system_obj): if not analysis_system_obj: return None analysis_system_ = System.from_obj(AnalysisSystem, AnalysisSystem()) if analysis_system_obj.get_Installed_Programs() is not None : analysis_system_.installed_programs = InstalledPrograms.from_obj(analysis_system_obj.get_Installed_Programs()) return analysis_system_
def from_dict(analysis_system_dict): if not analysis_system_dict: return None analysis_system_ = System.from_dict(AnalysisSystem, AnalysisSystem()) analysis_system_.installed_programs = InstalledPrograms.from_list( analysis_system_dict.get("installed_programs") ) return analysis_system_
def from_obj(hypervisor_host_system_obj): if not hypervisor_host_system_obj: return None hypervisor_host_system_ = System.from_obj(hypervisor_host_system_obj, HypervisorHostSystem()) hypervisor_host_system_.vm_hypervisor = PlatformSpecification.from_obj( hypervisor_host_system_obj.get_VM_Hypervisor() ) return hypervisor_host_system_
def from_dict(hypervisor_host_system_dict): if not hypervisor_host_system_dict: return None hypervisor_host_system_ = System.from_dict(hypervisor_host_system_dict, HypervisorHostSystem()) hypervisor_host_system_.vm_hypervisor = PlatformSpecification.from_dict( hypervisor_host_system_dict.get("vm_hypervisor") ) return hypervisor_host_system_
def from_obj(win_system_obj): if not win_system_obj: return None win_system_ = System.from_obj(win_system_obj, WinSystem()) win_system_.domains = [String.from_obj(x) for x in win_system_obj.get_Domain()] win_system_.global_flag_list = GlobalFlagList.from_obj(win_system_obj.get_Global_Flag_List()) win_system_.netbios_name = String.from_obj(win_system_obj.get_NetBIOS_Name()) win_system_.open_handle_list = WinHandleList.from_obj(win_system_obj.get_Open_Handle_List()) win_system_.product_id = String.from_obj(win_system_obj.get_Product_ID()) win_system_.product_name = String.from_obj(win_system_obj.get_Product_Name()) win_system_.registered_organization = String.from_obj(win_system_obj.get_Registered_Organization()) win_system_.registered_owner = String.from_obj(win_system_obj.get_Registered_Owner()) win_system_.windows_directory = String.from_obj(win_system_obj.get_Windows_Directory()) win_system_.windows_system_directory = String.from_obj(win_system_obj.get_Windows_System_Directory()) win_system_.windows_temp_directory = String.from_obj(win_system_obj.get_Windows_Temp_Directory()) return win_system_
def from_dict(win_system_dict): if not win_system_dict: return None win_system_ = System.from_dict(win_system_dict, WinSystem()) win_system_.domains = [String.from_dict(x) for x in win_system_dict.get('domains', [])] win_system_.global_flag_list = GlobalFlagList.from_list(win_system_dict.get('global_flag_list')) win_system_.netbios_name = String.from_dict(win_system_dict.get('netbios_name')) win_system_.open_handle_list = WinHandleList.from_list(win_system_dict.get('open_handle_list')) win_system_.product_id = String.from_dict(win_system_dict.get('product_id')) win_system_.product_name = String.from_dict(win_system_dict.get('product_name')) win_system_.registered_organization = String.from_dict(win_system_dict.get('registered_organization')) win_system_.registered_owner = String.from_dict(win_system_dict.get('registered_owner')) win_system_.windows_directory = String.from_dict(win_system_dict.get('windows_directory')) win_system_.windows_system_directory = String.from_dict(win_system_dict.get('windows_system_directory')) win_system_.windows_temp_directory = String.from_dict(win_system_dict.get('windows_temp_directory')) return win_system_
def make_cybox_object(type_, name=None, value=None): """ Converts type_, name, and value to a CybOX object instance. :param type_: The object type. :type type_: str :param name: The object name. :type name: str :param value: The object value. :type value: str :returns: CybOX object """ if type_ == "Account": acct = Account() acct.description = value return acct elif type_ == "Address": return Address(category=name, address_value=value) elif type_ == "Email Message": e = EmailMessage() e.raw_body = value return e elif type_ == "API": api = API() api.description = value return api elif type_ == "Artifact": if name == "Data Region": atype = Artifact.TYPE_GENERIC elif name == 'FileSystem Fragment': atype = Artifact.TYPE_FILE_SYSTEM elif name == 'Memory Region': atype = Artifact.TYPE_MEMORY else: raise UnsupportedCybOXObjectTypeError(type_, name) return Artifact(value, atype) elif type_ == "Code": obj = Code() obj.code_segment = value obj.type = name return obj elif type_ == "Disk": disk = Disk() disk.disk_name = type_ disk.type = name return disk elif type_ == "Disk Partition": disk = DiskPartition() disk.device_name = type_ disk.type = name return disk elif type_ == "DNS Query": r = URI() r.value = value dq = DNSQuestion() dq.qname = r d = DNSQuery() d.question = dq return d elif type_ == "DNS Record": # DNS Record indicators in CRITs are just a free form text box, there # is no good way to map them into the attributes of a DNSRecord cybox # object. So just stuff it in the description until someone tells me # otherwise. d = StructuredText(value=value) dr = DNSRecord() dr.description = d return dr elif type_ == "GUI Dialogbox": obj = GUIDialogbox() obj.box_text = value return obj elif type_ == "GUI Window": obj = GUIWindow() obj.window_display_name = value return obj elif type_ == "HTTP Request Header Fields" and name and name == "User-Agent": # TODO/NOTE: HTTPRequestHeaderFields has a ton of fields for info. # we should revisit this as UI is reworked or CybOX is improved. obj = HTTPRequestHeaderFields() obj.user_agent = value return obj elif type_ == "Library": obj = Library() obj.name = value obj.type = name return obj elif type_ == "Memory": obj = Memory() obj.memory_source = value return obj elif type_ == "Mutex": m = Mutex() m.named = True m.name = String(value) return m elif type_ == "Network Connection": obj = NetworkConnection() obj.layer7_protocol = value return obj elif type_ == "Pipe": p = Pipe() p.named = True p.name = String(value) return p elif type_ == "Port": p = Port() try: p.port_value = PositiveInteger(value) except ValueError: # XXX: Raise a better exception... raise UnsupportedCybOXObjectTypeError(type_, name) return p elif type_ == "Process": p = Process() p.name = String(value) return p elif type_ == "String": c = Custom() c.custom_name = "crits:String" c.description = ("This is a generic string used as the value of an " "Indicator or Object within CRITs.") c.custom_properties = CustomProperties() p1 = Property() p1.name = "value" p1.description = "Generic String" p1.value = value c.custom_properties.append(p1) return c elif type_ == "System": s = System() s.hostname = String(value) return s elif type_ == "URI": r = URI() r.type_ = name r.value = value return r elif type_ == "User Account": obj = UserAccount() obj.username = value return obj elif type_ == "Volume": obj = Volume() obj.name = value return obj elif type_ == "Win Driver": w = WinDriver() w.driver_name = String(value) return w elif type_ == "Win Event Log": obj = WinEventLog() obj.log = value return obj elif type_ == "Win Event": w = WinEvent() w.name = String(value) return w elif type_ == "Win Handle": obj = WinHandle() obj.type_ = name obj.object_address = value return obj elif type_ == "Win Kernel Hook": obj = WinKernelHook() obj.description = value return obj elif type_ == "Win Mailslot": obj = WinMailslot() obj.name = value return obj elif type_ == "Win Network Share": obj = WinNetworkShare() obj.local_path = value return obj elif type_ == "Win Process": obj = WinProcess() obj.window_title = value return obj elif type_ == "Win Registry Key": obj = WinRegistryKey() obj.key = value return obj elif type_ == "Win Service": obj = WinService() obj.service_name = value return obj elif type_ == "Win System": obj = WinSystem() obj.product_name = value return obj elif type_ == "Win Task": obj = WinTask() obj.name = value return obj elif type_ == "Win User Account": obj = WinUser() obj.security_id = value return obj elif type_ == "Win Volume": obj = WinVolume() obj.drive_letter = value return obj elif type_ == "X509 Certificate": obj = X509Certificate() obj.raw_certificate = value return obj """ The following are types that are listed in the 'Indicator Type' box of the 'New Indicator' dialog in CRITs. These types, unlike those handled above, cannot be written to or read from CybOX at this point. The reason for the type being omitted is written as a comment inline. This can (and should) be revisited as new versions of CybOX are released. NOTE: You will have to update the corresponding make_crits_object function with handling for the reverse direction. In the mean time, these types will raise unsupported errors. """ #elif type_ == "Device": # No CybOX API #elif type_ == "DNS Cache": # No CybOX API #elif type_ == "GUI": # revisit when CRITs supports width & height specification #elif type_ == "HTTP Session": # No good mapping between CybOX/CRITs #elif type_ == "Linux Package": # No CybOX API #elif type_ == "Network Packet": # No good mapping between CybOX/CRITs #elif type_ == "Network Route Entry": # No CybOX API #elif type_ == "Network Route": # No CybOX API #elif type_ == "Network Subnet": # No CybOX API #elif type_ == "Semaphore": # No CybOX API #elif type_ == "Socket": # No good mapping between CybOX/CRITs #elif type_ == "UNIX File": # No CybOX API #elif type_ == "UNIX Network Route Entry": # No CybOX API #elif type_ == "UNIX Pipe": # No CybOX API #elif type_ == "UNIX Process": # No CybOX API #elif type_ == "UNIX User Account": # No CybOX API #elif type_ == "UNIX Volume": # No CybOX API #elif type_ == "User Session": # No CybOX API #elif type_ == "Whois": # No good mapping between CybOX/CRITs #elif type_ == "Win Computer Account": # No CybOX API #elif type_ == "Win Critical Section": # No CybOX API #elif type_ == "Win Executable File": # No good mapping between CybOX/CRITs #elif type_ == "Win File": # No good mapping between CybOX/CRITs #elif type_ == "Win Kernel": # No CybOX API #elif type_ == "Win Mutex": # No good mapping between CybOX/CRITs #elif type_ == "Win Network Route Entry": # No CybOX API #elif type_ == "Win Pipe": # No good mapping between CybOX/CRITs #elif type_ == "Win Prefetch": # No CybOX API #elif type_ == "Win Semaphore": # No CybOX API #elif type_ == "Win System Restore": # No CybOX API #elif type_ == "Win Thread": # No good mapping between CybOX/CRITs #elif type_ == "Win Waitable Timer": # No CybOX API raise UnsupportedCybOXObjectTypeError(type_, name)
def create_discovery_method_system(self,available_physical_memory=None,bios_info=None,date=None,hostname=None,local_time=None,network_interface_list=None,os=None,processor=None,system_time=None,timezone_dst=None, timezone_standard=None,total_physical_memory=None,uptime=None,username=None): system = System() system.available_physical_memory=available_physical_memory system.bios_info = bios_info system.date = Date(value=date) system.hostname = hostname system.local_time = Time(value=local_time) if network_interface_list is not None: system.network_interface_list = NetworkInterfaceList() for netinter in network_interface_list: system.network_interface_list.append(netinter) system.os =os system.processor =processor system.system_time=Time(value=system_time) system.timezone_dst = timezone_dst system.timezone_standard =timezone_standard system.total_physical_memory=total_physical_memory if uptime is not None: system.uptime = Duration() system.uptime.value =uptime system.username = username return system