50 lines
2.1 KiB
Python
50 lines
2.1 KiB
Python
|
|
# flake8: noqa
|
|
|
|
from ..core import Bundle
|
|
from .common import (TLP_AMBER, TLP_GREEN, TLP_RED, TLP_WHITE, CustomMarking,
|
|
ExternalReference, GranularMarking, KillChainPhase,
|
|
LanguageContent, MarkingDefinition, StatementMarking,
|
|
TLPMarking)
|
|
from .observables import (URL, AlternateDataStream, ArchiveExt, Artifact,
|
|
AutonomousSystem, CustomExtension, CustomObservable,
|
|
Directory, DomainName, EmailAddress, EmailMessage,
|
|
EmailMIMEComponent, ExtensionsProperty, File,
|
|
HTTPRequestExt, ICMPExt, IPv4Address, IPv6Address,
|
|
MACAddress, Mutex, NetworkTraffic, NTFSExt, PDFExt,
|
|
Process, RasterImageExt, SocketExt, Software, TCPExt,
|
|
UNIXAccountExt, UserAccount, WindowsPEBinaryExt,
|
|
WindowsPEOptionalHeaderType, WindowsPESection,
|
|
WindowsProcessExt, WindowsRegistryKey,
|
|
WindowsRegistryValueType, WindowsServiceExt,
|
|
X509Certificate, X509V3ExtenstionsType,
|
|
parse_observable)
|
|
from .sdo import (AttackPattern, Campaign, CourseOfAction, CustomObject,
|
|
Identity, Indicator, IntrusionSet, Location, Malware, Note,
|
|
ObservedData, Opinion, Report, ThreatActor, Tool,
|
|
Vulnerability)
|
|
from .sro import Relationship, Sighting
|
|
|
|
OBJ_MAP = {
|
|
'attack-pattern': AttackPattern,
|
|
'bundle': Bundle,
|
|
'campaign': Campaign,
|
|
'course-of-action': CourseOfAction,
|
|
'identity': Identity,
|
|
'indicator': Indicator,
|
|
'intrusion-set': IntrusionSet,
|
|
'language-content': LanguageContent,
|
|
'location': Location,
|
|
'malware': Malware,
|
|
'note': Note,
|
|
'marking-definition': MarkingDefinition,
|
|
'observed-data': ObservedData,
|
|
'opinion': Opinion,
|
|
'report': Report,
|
|
'relationship': Relationship,
|
|
'threat-actor': ThreatActor,
|
|
'tool': Tool,
|
|
'sighting': Sighting,
|
|
'vulnerability': Vulnerability,
|
|
}
|