import logging
import synapse.lib.module as s_module
logger = logging.getLogger(__name__)
sophenums = (
(10, 'very low'),
(20, 'low'),
(30, 'medium'),
(40, 'high'),
(50, 'very high'),
)
prioenums = (
(0, 'none'),
(10, 'lowest'),
(20, 'low'),
(30, 'medium'),
(40, 'high'),
(50, 'highest'),
)
[docs]
class BaseModule(s_module.CoreModule):
[docs]
def getModelDefs(self):
return (('base', {
'types': (
('meta:source', ('guid', {}), {
'doc': 'A data source unique identifier.'}),
('meta:seen', ('comp', {'fields': (('source', 'meta:source'), ('node', 'ndef'))}), {
'doc': 'Annotates that the data in a node was obtained from or observed by a given source.'}),
('meta:note', ('guid', {}), {
'doc': 'An analyst note about nodes linked with -(about)> edges.'}),
('meta:note:type:taxonomy', ('taxonomy', {}), {
'interfaces': ('meta:taxonomy',),
'doc': 'An analyst note type taxonomy.'}),
('meta:timeline', ('guid', {}), {
'doc': 'A curated timeline of analytically relevant events.'}),
('meta:timeline:taxonomy', ('taxonomy', {}), {
'interfaces': ('meta:taxonomy',),
'doc': 'A taxonomy of timeline types for meta:timeline nodes.'}),
('meta:event', ('guid', {}), {
'doc': 'An analytically relevant event in a curated timeline.'}),
('meta:event:taxonomy', ('taxonomy', {}), {
'interfaces': ('meta:taxonomy',),
'doc': 'A taxonomy of event types for meta:event nodes.'}),
('meta:ruleset', ('guid', {}), {
'doc': 'A set of rules linked with -(has)> edges.'}),
('meta:rule:type:taxonomy', ('taxonomy', {}), {
'interfaces': ('meta:taxonomy',),
'doc': 'A taxonomy for meta:rule types.'}),
('meta:rule', ('guid', {}), {
'doc': 'A generic rule linked to matches with -(matches)> edges.'}),
('graph:cluster', ('guid', {}), {
'deprecated': True,
'doc': 'A generic node, used in conjunction with Edge types, to cluster arbitrary nodes to a '
'single node in the model.'}),
('graph:node', ('guid', {}), {
'deprecated': True,
'doc': 'A generic node used to represent objects outside the model.'}),
('graph:event', ('guid', {}), {
'deprecated': True,
'doc': 'A generic event node to represent events outside the model.'}),
('edge:refs', ('edge', {}), {
'deprecated': True,
'doc': 'A digraph edge which records that N1 refers to or contains N2.'}),
('edge:has', ('edge', {}), {
'deprecated': True,
'doc': 'A digraph edge which records that N1 has N2.'}),
('edge:wentto', ('timeedge', {}), {
'deprecated': True,
'doc': 'A digraph edge which records that N1 went to N2 at a specific time.'}),
('graph:edge', ('edge', {}), {
'deprecated': True,
'doc': 'A generic digraph edge to show relationships outside the model.'}),
('graph:timeedge', ('timeedge', {}), {
'deprecated': True,
'doc': 'A generic digraph time edge to show relationships outside the model.'}),
('meta:priority', ('int', {'enums': prioenums, 'enums:strict': False}), {
'doc': 'A generic priority enumeration.'}),
('meta:severity', ('int', {'enums': prioenums, 'enums:strict': False}), {
'doc': 'A generic severity enumeration.'}),
('meta:sophistication', ('int', {'enums': sophenums}), {
'doc': 'A sophistication score with named values: very low, low, medium, high, and very high.'}),
('meta:aggregate:type:taxonomy', ('taxonomy', {}), {
'interfaces': ('meta:taxonomy',),
'doc': 'A type of item being counted in aggregate.'}),
('meta:aggregate', ('guid', {}), {
'display': {
'columns': (
{'type': 'prop', 'opts': {'name': 'type'}},
{'type': 'prop', 'opts': {'name': 'count'}},
),
},
'doc': 'A node which represents an aggregate count of a specific type.'}),
),
'interfaces': (
('meta:taxonomy', {
'doc': 'Properties common to taxonomies.',
'props': (
('title', ('str', {}), {
'doc': 'A brief title of the definition.'}),
('summary', ('str', {}), {
'deprecated': True,
'doc': 'Deprecated. Please use title/desc.',
'disp': {'hint': 'text'}}),
('desc', ('str', {}), {
'doc': 'A definition of the taxonomy entry.',
'disp': {'hint': 'text'}}),
('sort', ('int', {}), {
'doc': 'A display sort order for siblings.'}),
('base', ('taxon', {}), {
'ro': True,
'doc': 'The base taxon.'}),
('depth', ('int', {}), {
'ro': True,
'doc': 'The depth indexed from 0.'}),
('parent', ('$self', {}), {
'ro': True,
'doc': 'The taxonomy parent.'}),
),
}),
),
'edges': (
((None, 'refs', None), {
'doc': 'The source node contains a reference to the target node.'}),
(('meta:source', 'seen', None), {
'doc': 'The meta:source observed the target node.'}),
(('meta:note', 'about', None), {
'doc': 'The meta:note is about the target node.'
}),
(('meta:ruleset', 'has', 'meta:rule'), {
'doc': 'The meta:ruleset includes the meta:rule.'}),
(('meta:rule', 'matches', None), {
'doc': 'The meta:rule has matched on target node.'}),
(('meta:rule', 'detects', None), {
'doc': 'The meta:rule is designed to detect instances of the target node.'}),
),
'forms': (
('meta:source', {}, (
('name', ('str', {'lower': True}), {
'doc': 'A human friendly name for the source.'}),
# TODO - 3.0 move to taxonomy type
('type', ('str', {'lower': True}), {
'doc': 'An optional type field used to group sources.'}),
('url', ('inet:url', {}), {
'doc': 'A URL which documents the meta source.'}),
)),
('meta:seen', {}, (
('source', ('meta:source', {}), {'ro': True,
'doc': 'The source which observed or provided the node.'}),
('node', ('ndef', {}), {'ro': True,
'doc': 'The node which was observed by or received from the source.'}),
)),
('meta:note:type:taxonomy', {}, ()),
('meta:note', {}, (
('type', ('meta:note:type:taxonomy', {}), {
'doc': 'The note type.'}),
('text', ('str', {}), {
'disp': {'hint': 'text', 'syntax': 'markdown'},
'doc': 'The analyst authored note text.'}),
('author', ('ps:contact', {}), {
'doc': 'The contact information of the author.'}),
('creator', ('syn:user', {}), {
'doc': 'The synapse user who authored the note.'}),
('created', ('time', {}), {
'doc': 'The time the note was created.'}),
('updated', ('time', {}), {
'doc': 'The time the note was updated.'}),
('replyto', ('meta:note', {}), {
'doc': 'The note is a reply to the specified note.'}),
)),
('meta:timeline', {}, (
('title', ('str', {}), {
'ex': 'The history of the Vertex Project',
'doc': 'A title for the timeline.'}),
('summary', ('str', {}), {
'disp': {'hint': 'text'},
'doc': 'A prose summary of the timeline.'}),
('type', ('meta:timeline:taxonomy', {}), {
'doc': 'The type of timeline.'}),
)),
('meta:timeline:taxonomy', {}, ()),
('meta:event', {}, (
('timeline', ('meta:timeline', {}), {
'doc': 'The timeline containing the event.'}),
('title', ('str', {}), {
'doc': 'A title for the event.'}),
('summary', ('str', {}), {
'disp': {'hint': 'text'},
'doc': 'A prose summary of the event.'}),
('time', ('time', {}), {
'doc': 'The time that the event occurred.'}),
('index', ('int', {}), {
'doc': 'The index of this event in a timeline without exact times.'}),
('duration', ('duration', {}), {
'doc': 'The duration of the event.'}),
('type', ('meta:event:taxonomy', {}), {
'doc': 'Type of event.'}),
)),
('meta:event:taxonomy', {}, ()),
('meta:ruleset', {}, (
('name', ('str', {'lower': True, 'onespace': True}), {
'doc': 'A name for the ruleset.'}),
('desc', ('str', {}), {
'disp': {'hint': 'text'},
'doc': 'A description of the ruleset.'}),
('author', ('ps:contact', {}), {
'doc': 'The contact information of the ruleset author.'}),
('created', ('time', {}), {
'doc': 'The time the ruleset was initially created.'}),
('updated', ('time', {}), {
'doc': 'The time the ruleset was most recently modified.'}),
)),
('meta:rule:type:taxonomy', {}, ()),
('meta:rule', {}, (
('name', ('str', {'lower': True, 'onespace': True}), {
'doc': 'A name for the rule.'}),
('type', ('meta:rule:type:taxonomy', {}), {
'doc': 'The rule type.'}),
('desc', ('str', {}), {
'disp': {'hint': 'text'},
'doc': 'A description of the rule.'}),
('text', ('str', {}), {
'disp': {'hint': 'text'},
'doc': 'The text of the rule logic.'}),
('author', ('ps:contact', {}), {
'doc': 'The contact information of the rule author.'}),
('created', ('time', {}), {
'doc': 'The time the rule was initially created.'}),
('updated', ('time', {}), {
'doc': 'The time the rule was most recently modified.'}),
('url', ('inet:url', {}), {
'doc': 'A URL which documents the rule.'}),
('ext:id', ('str', {}), {
'doc': 'An external identifier for the rule.'}),
)),
('meta:aggregate:type:taxonomy', {}, ()),
('meta:aggregate', {}, (
('type', ('meta:aggregate:type:taxonomy', {}), {
'ex': 'casualties.civilian',
'doc': 'The type of items being counted in aggregate.'}),
('time', ('time', {}), {
'doc': 'The time that the count was computed.'}),
('count', ('int', {}), {
'doc': 'The number of items counted in aggregate.'}),
)),
('graph:cluster', {}, (
('name', ('str', {'lower': True}), {
'doc': 'A human friendly name for the cluster.'}),
('desc', ('str', {'lower': True}), {
'doc': 'A human friendly long form description for the cluster.'}),
('type', ('str', {'lower': True}), {
'doc': 'An optional type field used to group clusters.'}),
)),
('edge:has', {}, (
('n1', ('ndef', {}), {'ro': True}),
('n1:form', ('str', {}), {'ro': True}),
('n2', ('ndef', {}), {'ro': True}),
('n2:form', ('str', {}), {'ro': True}),
)),
('edge:refs', {}, (
('n1', ('ndef', {}), {'ro': True}),
('n1:form', ('str', {}), {'ro': True}),
('n2', ('ndef', {}), {'ro': True}),
('n2:form', ('str', {}), {'ro': True}),
)),
('edge:wentto', {}, (
('n1', ('ndef', {}), {'ro': True}),
('n1:form', ('str', {}), {'ro': True}),
('n2', ('ndef', {}), {'ro': True}),
('n2:form', ('str', {}), {'ro': True}),
('time', ('time', {}), {'ro': True}),
)),
('graph:node', {}, (
('type', ('str', {}), {
'doc': 'The type name for the non-model node.'}),
('name', ('str', {}), {
'doc': 'A human readable name for this record.'}),
('data', ('data', {}), {
'doc': 'Arbitrary non-indexed msgpack data attached to the node.'}),
)),
('graph:edge', {}, (
('n1', ('ndef', {}), {'ro': True}),
('n1:form', ('str', {}), {'ro': True}),
('n2', ('ndef', {}), {'ro': True}),
('n2:form', ('str', {}), {'ro': True}),
)),
('graph:timeedge', {}, (
('time', ('time', {}), {'ro': True}),
('n1', ('ndef', {}), {'ro': True}),
('n1:form', ('str', {}), {'ro': True}),
('n2', ('ndef', {}), {'ro': True}),
('n2:form', ('str', {}), {'ro': True}),
)),
('graph:event', {}, (
('time', ('time', {}), {
'doc': 'The time of the event.'}),
('type', ('str', {}), {
'doc': 'A arbitrary type string for the event.'}),
('name', ('str', {}), {
'doc': 'A name for the event.'}),
('data', ('data', {}), {
'doc': 'Arbitrary non-indexed msgpack data attached to the event.'}),
)),
),
}),)