зеркало из https://github.com/mozilla/MozDef.git
35 строки
1019 B
Python
35 строки
1019 B
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) 2016 Mozilla Corporation
|
|
#
|
|
# Contributors:
|
|
# Brandon Myers bmyers@mozilla.com
|
|
|
|
from lib.alerttask import AlertTask
|
|
from query_models import SearchQuery, TermMatch
|
|
|
|
|
|
class AlertCloudtrailNewVPN(AlertTask):
|
|
def main(self):
|
|
search_query = SearchQuery(minutes=30)
|
|
|
|
search_query.add_must([
|
|
TermMatch('_type', 'cloudtrail'),
|
|
TermMatch('eventName', 'CreateVpnConnection'),
|
|
])
|
|
|
|
self.filtersManual(search_query)
|
|
self.searchEventsSimple()
|
|
self.walkEvents()
|
|
|
|
def onEvent(self, event):
|
|
category = 'AWSCloudtrail'
|
|
tags = ['cloudtrail', 'aws']
|
|
severity = 'ERROR'
|
|
|
|
summary = 'New VPN Connection Created'
|
|
|
|
return self.createAlertDict(summary, category, tags, [event], severity) |