2017-07-24 13:26:22 +02:00
2016-10-29 21:27:48 +02:00
# -*- coding: utf-8 -*-
2017-02-27 11:33:07 +01:00
import os
2017-08-30 12:47:32 +02:00
from . . import MISPEvent
2016-10-29 21:27:48 +02:00
try :
2020-01-23 10:27:40 +01:00
from bs4 import BeautifulSoup # type: ignore
2017-05-03 10:56:41 +02:00
has_bs4 = True
2016-10-29 21:27:48 +02:00
except ImportError :
2017-05-03 10:56:41 +02:00
has_bs4 = False
2016-10-29 21:27:48 +02:00
iocMispMapping = {
2017-05-03 10:56:41 +02:00
' CookieHistoryItem/HostName ' : { ' type ' : ' hostname ' , ' comment ' : ' CookieHistory. ' } ,
' DriverItem/DriverName ' : { ' category ' : ' Artifacts dropped ' , ' type ' : ' other ' , ' comment ' : ' DriverName. ' } ,
2017-05-24 07:38:17 +02:00
' DriverItem/CertificateIssuer ' : { ' category ' : ' Artifacts dropped ' , ' type ' : ' other ' , ' comment ' : ' DriverCertificateIssuer. ' } ,
' DriverItem/DeviceItem/AttachedDeviceName ' : { ' category ' : ' Artifacts dropped ' , ' type ' : ' other ' , ' comment ' : ' DriverDeviceName. ' } ,
2017-05-03 10:56:41 +02:00
' DnsEntryItem/Host ' : { ' type ' : ' domain ' } ,
2017-05-24 07:38:17 +02:00
' DnsEntryItem/RecordName ' : { ' type ' : ' domain ' } ,
2017-05-03 10:56:41 +02:00
' Email/To ' : { ' type ' : ' target-email ' } ,
' Email/Date ' : { ' type ' : ' comment ' , ' comment ' : ' EmailDate. ' } ,
' Email/Body ' : { ' type ' : ' email-subject ' } ,
' Email/From ' : { ' type ' : ' email-dst ' } ,
' Email/Subject ' : { ' type ' : ' email-subject ' } ,
' Email/Attachment/Name ' : { ' type ' : ' email-attachment ' } ,
2017-05-24 07:38:17 +02:00
' FileItem/Md5sum ' : { ' type ' : ' md5 ' } ,
' FileItem/Sha1sum ' : { ' type ' : ' sha1 ' } ,
' FileItem/FileName ' : { ' type ' : ' filename ' } ,
' FileItem/FullPath ' : { ' type ' : ' filename ' } ,
' FileItem/FilePath ' : { ' type ' : ' filename ' } ,
' FileItem/Sha256sum ' : { ' type ' : ' sha256 ' } ,
' FileItem/DevicePath ' : { ' type ' : ' comment ' , ' comment ' : ' DevicePath. ' } ,
' FileItem/SizeInBytes ' : { ' type ' : ' size-in-bytes ' } ,
' FileItem/PEInfo/Type ' : { ' type ' : ' comment ' , ' comment ' : ' PE Type. ' } ,
' FileItem/FileExtension ' : { ' type ' : ' comment ' , ' comment ' : ' FileExtension. ' } ,
' FileItem/FilenameCreated ' : { ' type ' : ' filename ' , ' comment ' : ' FilenameCreated. ' } ,
' FileItem/StringList/string ' : { ' type ' : ' pattern-in-file ' , ' comment ' : ' string list. ' } ,
' FileItem/PEInfo/PETimeStamp ' : { ' type ' : ' pattern-in-file ' , ' comment ' : ' PE TimeStamp. ' } ,
' FileItem/PEInfo/Exports/DllName ' : { ' type ' : ' pattern-in-memory ' , ' comment ' : ' PE export DllName. ' } ,
' FileItem/PEInfo/Sections/Section/Name ' : { ' type ' : ' pattern-in-memory ' , ' comment ' : ' PE SectionName. ' } ,
' FileItem/PEInfo/DetectedAnomalies/string ' : { ' type ' : ' pattern-in-file ' , ' comment ' : ' PE DEtected AnomaliesString. ' } ,
' FileItem/PEInfo/Exports/NumberOfFunctions ' : { ' type ' : ' pattern-in-file ' , ' comment ' : ' PE Export NumberOfFunctions. ' } ,
' FileItem/PEInfo/ImportedModules/Module/Name ' : { ' type ' : ' pattern-in-file ' , ' comment ' : ' PE ImportedModulesName. ' } ,
' FileItem/PEInfo/DigitalSignature/Description ' : { ' type ' : ' comment ' , ' comment ' : ' PE DigitalSignatureDescription. ' } ,
' FileItem/PEInfo/DigitalSignature/SignatureExists ' : { ' type ' : ' comment ' , ' comment ' : ' PE SignatureExists. ' } ,
' FileItem/PEInfo/Exports/ExportedFunctions/string ' : { ' type ' : ' comment ' , ' comment ' : ' PE ExportedFunctions. ' } ,
' FileItem/PEInfo/DigitalSignature/CertificateIssuer ' : { ' type ' : ' comment ' , ' comment ' : ' PE SignatureCertificateIssuer. ' } ,
' FileItem/PEInfo/DigitalSignature/SignatureVerified ' : { ' type ' : ' comment ' , ' comment ' : ' PE SignatureVerified. ' } ,
' FileItem/PEInfo/DigitalSignature/CertificateSubject ' : { ' type ' : ' other ' , ' comment ' : ' PE CertificateDigitalSignatureSubject. ' } ,
' FileItem/PEInfo/ResourceInfoList/ResourceInfoItem/Name ' : { ' type ' : ' comment ' , ' comment ' : ' PE ResourceName. ' } ,
' FileItem/PEInfo/ResourceInfoList/ResourceInfoItem/Type ' : { ' type ' : ' comment ' , ' comment ' : ' PE ResourceType. ' } ,
' FileItem/PEInfo/VersionInfoList/VersionInfoItem/Language ' : { ' type ' : ' pattern-in-file ' , ' comment ' : ' PE LanguageVersion. ' } ,
' FileItem/PEInfo/ResourceInfoList/ResourceInfoItem/Language ' : { ' type ' : ' pattern-in-file ' , ' comment ' : ' PE LanguageResource. ' } ,
' FileItem/PEInfo/VersionInfoList/VersionInfoItem/CompanyName ' : { ' type ' : ' pattern-in-file ' , ' comment ' : ' PE versionInfo CompanyName. ' } ,
' FileItem/PEInfo/VersionInfoList/VersionInfoItem/FileVersion ' : { ' type ' : ' pattern-in-file ' , ' comment ' : ' PE Version. ' } ,
' FileItem/PEInfo/VersionInfoList/VersionInfoItem/ProductName ' : { ' type ' : ' pattern-in-file ' , ' comment ' : ' PE ProductName. ' } ,
' FileItem/PEInfo/VersionInfoList/VersionInfoItem/InternalName ' : { ' type ' : ' pattern-in-file ' , ' comment ' : ' PE InternalName. ' } ,
' FileItem/PEInfo/VersionInfoList/VersionInfoItem/LegalCopyright ' : { ' type ' : ' pattern-in-file ' , ' comment ' : ' PE LegalCopyright. ' } ,
' FileItem/PEInfo/VersionInfoList/VersionInfoItem/ProductVersion ' : { ' type ' : ' pattern-in-file ' , ' comment ' : ' PE ProductVersion. ' } ,
' FileItem/PEInfo/VersionInfoList/VersionInfoItem/FileDescription ' : { ' type ' : ' comment ' , ' comment ' : ' PE FileDescription . ' } ,
' FileItem/PEInfo/ImportedModules/Module/ImportedFunctions/string ' : { ' type ' : ' pattern-in-file ' , ' comment ' : ' PE ImportedModules. ' } ,
' FileItem/PEInfo/VersionInfoList/VersionInfoItem/OriginalFilename ' : { ' type ' : ' pattern-in-file ' , ' comment ' : ' OriginalFilename of PE. ' } ,
2017-05-03 10:56:41 +02:00
' FormHistoryItem/HostName ' : { ' type ' : ' hostname ' , ' comment ' : ' FormHistory. ' } ,
2017-05-24 07:38:17 +02:00
' Network/URI ' : { ' type ' : ' uri ' } ,
' Network/DNS ' : { ' type ' : ' domain ' } ,
' Network/String ' : { ' type ' : ' url ' } ,
' Network/IPRange ' : { ' type ' : ' ip-dst ' } ,
' Network/UserAgent ' : { ' type ' : ' user-agent ' } ,
' PortItem/localIP ' : { ' type ' : ' ip-src ' } ,
' PortItem/remoteIP ' : { ' type ' : ' ip-dst ' } ,
' PortItem/remotePort ' : { ' type ' : ' pattern-in-traffic ' , ' comment ' : ' RemotePort. ' } ,
' ProcessItem/name ' : { ' type ' : ' pattern-in-memory ' , ' comment ' : ' ProcessName. ' } ,
' ProcessItem/path ' : { ' type ' : ' pattern-in-memory ' , ' comment ' : ' ProcessPath. ' } ,
' ProcessItem/Mutex ' : { ' type ' : ' mutex ' , ' comment ' : ' mutex ' } ,
' ProcessItem/arguments ' : { ' type ' : ' pattern-in-memory ' , ' comment ' : ' ProcessArguments. ' } ,
' ProcessItem/NamedPipe ' : { ' type ' : ' named pipe ' } ,
' ProcessItem/Pipe/Name ' : { ' type ' : ' named pipe ' } ,
' ProcessItem/Mutex/Name ' : { ' type ' : ' mutex ' , ' comment ' : ' MutexName. ' } ,
' ProcessItem/Event/Name ' : { ' type ' : ' pattern-in-memory ' , ' comment ' : ' ProcessEventName. ' } ,
' ProcessItem/StringList/string ' : { ' type ' : ' pattern-in-memory ' , ' comment ' : ' StringlistName. ' } ,
' ProcessItem/HandleList/Handle/Name ' : { ' type ' : ' pattern-in-memory ' , ' comment ' : ' ProcessHandleListName ' } ,
' ProcessItem/HandleList/Handle/Type ' : { ' type ' : ' pattern-in-memory ' , ' comment ' : ' ProcessHandleType ' } ,
' ProcessItem/SectionList/MemorySection/Name ' : { ' type ' : ' pattern-in-memory ' , ' comment ' : ' ProcessSectionMemoryName ' } ,
' ProcessItem/SectionList/MemorySection/PEInfo/Exports/DllName ' : { ' type ' : ' pattern-in-memory ' , ' comment ' : ' ProcessMemoryPEExportsDllName ' } ,
' ProcessItem/SectionList/MemorySection/PEInfo/Sections/Section/Name ' : { ' type ' : ' pattern-in-memory ' , ' comment ' : ' Section name from PE in process memory section ' } ,
' RegistryItem/Text ' : { ' type ' : ' regkey ' , ' comment ' : ' RegistryText. ' } ,
' RegistryItem/Path ' : { ' type ' : ' regkey ' , ' comment ' : ' RegistryPath. ' } ,
' RegistryItem/Value ' : { ' type ' : ' regkey ' , ' comment ' : ' RegistryValue. ' } ,
' RegistryItem/KeyPath ' : { ' type ' : ' regkey ' , ' comment ' : ' RegistryKeyPath. ' } ,
' RegistryItem/ValueName ' : { ' type ' : ' regkey ' , ' comment ' : ' RegistryValueName. ' } ,
2017-05-03 15:19:27 +02:00
' RouteEntryItem/Destination ' : { ' type ' : ' ip-dst ' } ,
2017-05-24 07:38:17 +02:00
' RouteEntryItem/Destination/IP ' : { ' type ' : ' ip-dst ' , ' comment ' : ' RouteDestination. ' } ,
2019-06-19 12:45:20 +02:00
' RouteEntryItem/Destination/string ' : { ' type ' : ' hostname ' , ' comment ' : ' RouteDestination. ' } ,
2017-05-03 10:56:41 +02:00
2017-05-24 07:38:17 +02:00
' ServiceItem/name ' : { ' type ' : ' windows-service-name ' } ,
' ServiceItem/type ' : { ' type ' : ' pattern-in-memory ' , ' comment ' : ' ServiceType. ' } ,
' ServiceItem/startedAs ' : { ' type ' : ' pattern-in-memory ' , ' comment ' : ' ServiceStartedAs. ' } ,
' ServiceItem/serviceDLL ' : { ' type ' : ' pattern-in-memory ' , ' comment ' : ' ServiceDll. ' } ,
' ServiceItem/description ' : { ' type ' : ' comment ' , ' comment ' : ' ServiceDescription. ' } ,
' ServiceItem/descriptiveName ' : { ' type ' : ' windows-service-displayname ' } ,
2017-05-03 15:19:27 +02:00
' ServiceItem/serviceDLLmd5sum ' : { ' type ' : ' md5 ' , ' comment ' : ' ServiceDLL. ' } ,
' ServiceItem/serviceDLLsha1sum ' : { ' type ' : ' sha1 ' , ' comment ' : ' ServiceDLL. ' } ,
' ServiceItem/serviceDLLsha256sum ' : { ' type ' : ' sha256 ' , ' comment ' : ' ServiceDLL. ' } ,
2017-05-24 07:38:17 +02:00
' ServiceItem/serviceDLLSignatureVerified ' : { ' type ' : ' pattern-in-memory ' , ' comment ' : ' ServiceDllSignatureVerified. ' } ,
2017-05-03 10:56:41 +02:00
2017-05-24 07:38:17 +02:00
' Snort/Snort ' : { ' type ' : ' snort ' } ,
2017-05-03 10:56:41 +02:00
' SystemInfoItem/HostName ' : { ' type ' : ' hostname ' , ' comment ' : ' SystemInfo. ' } ,
2017-05-24 07:38:17 +02:00
' TaskItem/Name ' : { ' type ' : ' windows-scheduled-task ' , ' comment ' : ' TaskName. ' } ,
' TaskItem/sha1sum ' : { ' type ' : ' windows-scheduled-task ' , ' comment ' : ' TashSha1. ' } ,
' TaskItem/sha256sum ' : { ' type ' : ' windows-scheduled-task ' , ' comment ' : ' TashSha256. ' } ,
' TaskItem/AccountName ' : { ' type ' : ' windows-scheduled-task ' , ' comment ' : ' TaskAccountName ' } ,
' TaskItem/ActionList/Action/ExecProgramPath ' : { ' type ' : ' windows-scheduled-task ' , ' comment ' : ' TaskExecProgramPath. ' } ,
' TaskItem/TriggerList/Trigger/TriggerFrequency ' : { ' type ' : ' windows-scheduled-task ' , ' comment ' : ' TaskTriggerFrequency. ' } ,
2017-05-03 10:56:41 +02:00
2017-05-24 07:38:17 +02:00
' UrlHistoryItem/URL ' : { ' type ' : ' url ' , ' comment ' : ' UrlHistory. ' } ,
' UrlHistoryItem/HostName ' : { ' type ' : ' hostname ' , ' comment ' : ' UrlHistory. ' } ,
2017-05-03 10:56:41 +02:00
2017-05-24 07:38:17 +02:00
' Yara/Yara ' : { ' type ' : ' yara ' }
2017-05-15 20:25:16 +02:00
}
2017-05-03 10:56:41 +02:00
2017-05-15 20:25:16 +02:00
iocMispCompositeMapping = {
2017-05-03 10:56:41 +02:00
# mapping for composite object
# maybe later filename|sizeinbyte
2017-05-24 07:38:17 +02:00
' FileItem/FileName|FileItem/Md5sum ' : { ' type ' : ' filename|md5 ' } ,
' FileItem/FileName|FileItem/Sha1sum ' : { ' type ' : ' filename|sha1 ' } ,
' FileItem/FileName|FileItem/Sha256sum ' : { ' type ' : ' filename|sha256 ' } ,
' Network/DNS|PortItem/remoteIP ' : { ' type ' : ' domain|ip ' } ,
2018-07-16 13:52:51 +02:00
' PortItem/remoteIP|PortItem/remotePort ' : { ' type ' : ' ip-dst|port ' } ,
2017-05-24 07:38:17 +02:00
' RegistryItem/Path|RegistryItem/Value ' : { ' type ' : ' regkey|value ' } ,
' RegistryItem/KeyPath|RegistryItem/Value ' : { ' type ' : ' regkey|value ' } ,
' RegistryItem/Path|RegistryItem/Text ' : { ' type ' : ' regkey|value ' }
2016-10-29 21:27:48 +02:00
}
2017-05-24 07:38:17 +02:00
2016-10-29 21:27:48 +02:00
def extract_field ( report , field_name ) :
2017-05-15 20:25:16 +02:00
if report :
data = report . find ( field_name . lower ( ) )
if data and hasattr ( data , ' text ' ) :
return data . text
2017-07-12 12:12:35 +02:00
return ' '
2016-10-29 21:27:48 +02:00
2017-02-27 11:33:07 +01:00
def load_openioc_file ( openioc_path ) :
2017-05-03 10:56:41 +02:00
if not os . path . exists ( openioc_path ) :
raise Exception ( " Path doesn ' t exists. " )
with open ( openioc_path , ' r ' ) as f :
return load_openioc ( f )
2017-02-27 11:33:07 +01:00
2016-10-29 21:27:48 +02:00
def load_openioc ( openioc ) :
2017-05-03 10:56:41 +02:00
# Takes a opened file, or a string
if not has_bs4 :
raise Exception ( ' You need to install BeautifulSoup: pip install bs4 ' )
misp_event = MISPEvent ( )
iocreport = BeautifulSoup ( openioc , " html.parser " )
# Set event fields
info = extract_field ( iocreport , ' short_description ' )
if info :
misp_event . info = info
date = extract_field ( iocreport , ' authored_date ' )
if date :
misp_event . set_date ( date )
# Set special attributes
description = extract_field ( iocreport , ' description ' )
if description :
if not misp_event . info :
misp_event . info = description
else :
misp_event . add_attribute ( ' comment ' , description )
if not misp_event . info :
misp_event . info = ' OpenIOC import '
author = extract_field ( iocreport , ' authored_by ' )
if author :
misp_event . add_attribute ( ' comment ' , author )
misp_event = set_all_attributes ( iocreport , misp_event )
return misp_event
2016-10-29 21:27:48 +02:00
2017-05-15 20:25:16 +02:00
def get_mapping ( openioc_type , mappingDict = iocMispMapping ) :
2017-05-03 10:56:41 +02:00
t = openioc_type . lower ( )
2017-05-15 20:25:16 +02:00
for k , v in mappingDict . items ( ) :
2017-05-03 10:56:41 +02:00
if k . lower ( ) == t :
return v
return False
2017-05-02 18:47:53 +02:00
2017-05-15 20:25:16 +02:00
def set_values ( value1 , value2 = None ) :
attribute_values = { }
if value2 is not None :
# construct attribut composite value
2017-05-24 07:38:17 +02:00
value = " {} | {} " . format ( extract_field ( value1 , ' Content ' ) ,
extract_field ( value2 , ' Content ' )
)
2017-05-15 20:25:16 +02:00
else :
value = extract_field ( value1 , ' Content ' )
if value :
attribute_values [ ' value ' ] = value
else :
return None
if value2 is not None :
# construct attribut composite type
2017-05-24 07:38:17 +02:00
compositeMapping = ' {} | {} ' . format ( value1 . find ( ' context ' ) [ ' search ' ] , value2 . find ( ' context ' ) [ ' search ' ] )
2017-05-15 20:25:16 +02:00
mapping = get_mapping ( compositeMapping , mappingDict = iocMispCompositeMapping )
else :
2019-06-19 07:38:15 +02:00
context_search = value1 . find ( ' context ' ) [ ' search ' ]
2019-06-18 16:10:20 +02:00
content_type = value1 . find ( ' content ' ) . get ( ' type ' , None )
2019-06-19 07:38:15 +02:00
if " RouteEntryItem/Destination " in context_search and content_type :
mapping = get_mapping ( context_search + ' / ' + content_type )
2019-06-18 16:10:20 +02:00
else :
2019-06-19 07:38:15 +02:00
mapping = get_mapping ( context_search )
2017-05-15 20:25:16 +02:00
2017-05-03 10:56:41 +02:00
if mapping :
attribute_values . update ( mapping )
else :
2017-05-15 20:25:16 +02:00
# Unknown mapping, assign to default
attribute_values [ ' category ' ] = ' External analysis '
2017-07-12 11:07:54 +02:00
attribute_values [ ' type ' ] = ' other '
2017-05-15 20:25:16 +02:00
# change value to composite
# 127.0.0.1:80 ip-* to 127.0.0.1|80 ip-*|port
2017-07-12 11:07:54 +02:00
if attribute_values [ ' type ' ] in [ ' ip-src ' , ' ip-dst ' ] and attribute_values [ ' value ' ] . count ( ' : ' ) == 1 :
attribute_values [ ' type ' ] = attribute_values [ ' type ' ] + ' |port '
2017-05-15 20:25:16 +02:00
attribute_values [ ' value ' ] = attribute_values [ ' value ' ] . replace ( ' : ' , ' | ' )
2017-05-24 07:38:17 +02:00
attribute_values [ " comment " ] = ' {} {} ' . format ( extract_field ( value1 , ' Comment ' ) ,
extract_field ( value2 , ' Comment ' )
)
2017-05-15 20:25:16 +02:00
2017-05-03 10:56:41 +02:00
return attribute_values
2016-10-29 21:27:48 +02:00
2017-05-24 07:38:17 +02:00
2016-10-29 21:27:48 +02:00
def set_all_attributes ( openioc , misp_event ) :
2017-05-03 10:56:41 +02:00
processed = set ( )
2017-05-15 20:25:16 +02:00
2017-05-03 10:56:41 +02:00
# check for composite item
for composite in openioc . find_all ( " indicator " , operator = " AND " ) :
# check for composite number under
childs = composite . find_all ( ' indicatoritem ' )
if len ( childs ) == 2 :
childList = [ child . find ( ' context ' ) [ ' search ' ] for child in childs ]
2017-05-15 20:25:16 +02:00
def check_and_add ( value1 , value2 ) :
if ( value1 and value2 ) in childList :
if childs [ 0 ] . find ( ' context ' ) [ ' search ' ] == value1 :
attribute_values = set_values ( childs [ 0 ] , childs [ 1 ] )
else :
attribute_values = set_values ( childs [ 1 ] , childs [ 0 ] )
misp_event . add_attribute ( * * attribute_values )
processed . add ( childs [ 0 ] [ ' id ' ] )
processed . add ( childs [ 1 ] [ ' id ' ] )
for k in iocMispCompositeMapping :
check_and_add ( k . split ( ' | ' ) [ 0 ] , k . split ( ' | ' ) [ 1 ] )
2017-05-03 10:56:41 +02:00
for item in openioc . find_all ( " indicatoritem " ) :
# check if id in processed list
if item [ ' id ' ] in processed :
continue
2017-05-15 20:25:16 +02:00
attribute_values = set_values ( item )
2017-05-24 07:38:17 +02:00
2017-05-15 20:25:16 +02:00
if attribute_values is None :
2017-05-03 10:56:41 +02:00
continue
2017-05-15 20:25:16 +02:00
2017-05-03 10:56:41 +02:00
misp_event . add_attribute ( * * attribute_values )
return misp_event