зеркало из https://github.com/mozilla/MozDef.git
57 строки
1.8 KiB
Python
57 строки
1.8 KiB
Python
#!/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:
|
|
# Anthony Verez averez@mozilla.com
|
|
# Jeff Bryner jbryner@mozilla.com
|
|
# Aaron Meihm ameihm@mozilla.com
|
|
# Michal Purzynski <mpurzynski@mozilla.com>
|
|
# Alicia Smith <asmith@mozilla.com>
|
|
|
|
from lib.alerttask import AlertTask
|
|
from query_models import SearchQuery, TermMatch, PhraseMatch
|
|
|
|
|
|
class AlertSFTPEvent(AlertTask):
|
|
def main(self):
|
|
search_query = SearchQuery(minutes=5)
|
|
|
|
search_query.add_must([
|
|
TermMatch('_type', 'auditd'),
|
|
TermMatch('category', 'execve'),
|
|
TermMatch('processname', 'audisp-json'),
|
|
TermMatch('details.processname', 'ssh'),
|
|
PhraseMatch('details.parentprocess', 'sftp'),
|
|
])
|
|
|
|
self.filtersManual(search_query)
|
|
self.searchEventsSimple()
|
|
self.walkEvents()
|
|
|
|
# Set alert properties
|
|
def onEvent(self, event):
|
|
category = 'execve'
|
|
severity = 'NOTICE'
|
|
tags = ['audisp-json, audit']
|
|
|
|
srchost = 'unknown'
|
|
username = 'unknown'
|
|
directory = 'unknown'
|
|
x = event['_source']
|
|
if 'details' in x:
|
|
if 'hostname' in x['details']:
|
|
srchost = x['details']['hostname']
|
|
if 'originaluser' in x['details']:
|
|
username = x['details']['originaluser']
|
|
if 'cwd' in x['details']:
|
|
directory = x['details']['cwd']
|
|
|
|
summary = 'SFTP Event by {0} from host {1} in directory {2}'.format(username, srchost, directory)
|
|
|
|
# Create the alert object based on these properties
|
|
return self.createAlertDict(summary, category, tags, [event], severity)
|