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) 2015 Mozilla Corporation
|
|
|
|
|
|
|
|
from lib.alerttask import AlertTask
|
2018-10-17 01:33:58 +03:00
|
|
|
from mozdef_util.query_models import SearchQuery, TermMatch
|
2016-08-03 23:40:10 +03:00
|
|
|
|
2017-06-15 22:56:47 +03:00
|
|
|
|
|
|
|
class AlertSSHIOC(AlertTask):
|
|
|
|
def main(self):
|
2016-08-03 23:40:10 +03:00
|
|
|
search_query = SearchQuery(minutes=30)
|
|
|
|
|
|
|
|
search_query.add_must([
|
2016-08-19 22:50:16 +03:00
|
|
|
TermMatch('tags', 'mig-runner-sshioc'),
|
2016-08-03 23:40:10 +03:00
|
|
|
])
|
|
|
|
|
|
|
|
self.filtersManual(search_query)
|
2017-06-15 22:56:47 +03:00
|
|
|
|
|
|
|
self.searchEventsSimple()
|
|
|
|
self.walkEvents()
|
|
|
|
|
|
|
|
# Set alert properties
|
|
|
|
def onEvent(self, event):
|
|
|
|
category = 'sshioc'
|
|
|
|
tags = ['sshioc']
|
|
|
|
severity = 'WARNING'
|
|
|
|
|
|
|
|
summary = 'SSH IOC match from runner plugin'
|
|
|
|
return self.createAlertDict(summary, category, tags, [event], severity)
|