2017-06-15 22:56:47 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
# Copyright (c) 2014 Mozilla Corporation
|
|
|
|
#
|
|
|
|
# Contributors:
|
|
|
|
# Jeff Bryner jbryner@mozilla.com
|
|
|
|
#
|
|
|
|
# a collection of alerts looking for the lack of events
|
|
|
|
# to alert on a dead input source.
|
|
|
|
|
|
|
|
from lib.alerttask import AlertTask
|
2016-08-19 23:40:51 +03:00
|
|
|
from query_models import SearchQuery, TermMatch, PhraseMatch
|
|
|
|
|
2017-06-15 22:56:47 +03:00
|
|
|
|
|
|
|
def fakeEvent():
|
|
|
|
# make a fake event
|
|
|
|
# mimicing some parameters since this isn't an ES event
|
|
|
|
# but should have an ES event metadata structure
|
2016-08-03 23:40:10 +03:00
|
|
|
# like _index, _type, etc.
|
2017-06-15 22:56:47 +03:00
|
|
|
event = dict()
|
|
|
|
event['_index'] = ''
|
|
|
|
event['_type'] = ''
|
|
|
|
event['_source'] = dict()
|
|
|
|
event['_id'] = ''
|
|
|
|
return event
|
|
|
|
|
2016-08-19 23:40:51 +03:00
|
|
|
|
2017-06-15 22:56:47 +03:00
|
|
|
class broNSM(AlertTask):
|
|
|
|
def main(self, *args, **kwargs):
|
|
|
|
# call with hostlist=['host1','host2','host3']
|
|
|
|
# to search for missing events
|
|
|
|
if kwargs and 'hostlist' in kwargs.keys():
|
|
|
|
for host in kwargs['hostlist']:
|
|
|
|
self.log.debug('checking deadman for host: {0}'.format(host))
|
2016-08-03 23:40:10 +03:00
|
|
|
search_query = SearchQuery(minutes=20)
|
|
|
|
|
|
|
|
search_query.add_must([
|
2016-08-19 23:40:51 +03:00
|
|
|
PhraseMatch("details.note", "MozillaAlive::Bro_Is_Watching_You"),
|
|
|
|
PhraseMatch("details.peer_descr", host),
|
2016-08-19 22:50:16 +03:00
|
|
|
TermMatch('category', 'bronotice'),
|
|
|
|
TermMatch('_type', 'bro')
|
2016-08-03 23:40:10 +03:00
|
|
|
])
|
|
|
|
|
|
|
|
self.filtersManual(search_query)
|
2017-06-15 22:56:47 +03:00
|
|
|
|
|
|
|
# Search events
|
|
|
|
self.searchEventsSimple()
|
|
|
|
self.walkEvents(hostname=host)
|
|
|
|
|
|
|
|
# Set alert properties
|
|
|
|
# if no events found
|
|
|
|
def onNoEvent(self, hostname):
|
|
|
|
category = 'deadman'
|
|
|
|
tags = ['bro']
|
|
|
|
severity = 'ERROR'
|
|
|
|
|
|
|
|
summary = ('no {0} bro healthcheck events found since {1}'.format(hostname, self.begindateUTC.isoformat()))
|
|
|
|
url = "https://mana.mozilla.org/wiki/display/SECURITY/NSM+IR+procedures"
|
2016-08-03 23:40:10 +03:00
|
|
|
|
2017-06-15 22:56:47 +03:00
|
|
|
# make an event to attach to the alert
|
|
|
|
event = fakeEvent()
|
|
|
|
# attach our info about not having an event to _source:
|
|
|
|
# to mimic an ES document
|
|
|
|
event['_source']['category'] = 'deadman'
|
|
|
|
event['_source']['tags'] = ['bro']
|
|
|
|
event['_source']['severity'] = 'ERROR'
|
|
|
|
event['_source']['hostname'] = hostname
|
|
|
|
event['_source']['summary'] = summary
|
|
|
|
# serialize the filter to avoid datetime objects causing json problems.
|
2016-08-19 22:53:16 +03:00
|
|
|
event['_source']['details'] = dict(filter='{0}'.format(self.filter.serialize()))
|
2017-06-15 22:56:47 +03:00
|
|
|
|
|
|
|
# Create the alert object based on these properties
|
|
|
|
return self.createAlertDict(summary, category, tags, [event], severity=severity, url=url)
|