MozDef/cron/mig2mozdef.py

113 строки
4.7 KiB
Python
Исходник Обычный вид История

2014-06-16 21:54:11 +04: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:
# Anthony Verez averez@mozilla.com
import os
import sys
from configlib import getConfig,OptionParser,setConfig
import logging
from logging.handlers import SysLogHandler
import gzip
from StringIO import StringIO
import json
import time
import pyes
from datetime import datetime
from datetime import timedelta
from dateutil.parser import parse
from datetime import date
import pytz
import requests
import pprint as pp
import hashlib
logger = logging.getLogger(sys.argv[0])
logger.level=logging.INFO
formatter = logging.Formatter('%(asctime)s %(name)s %(levelname)s %(message)s')
def toUTC(suspectedDate,localTimeZone=None):
'''make a UTC date out of almost anything'''
utc=pytz.UTC
objDate=None
if localTimeZone is None:
localTimeZone=options.defaultTimeZone
if type(suspectedDate) in (str,unicode):
objDate=parse(suspectedDate,fuzzy=True)
elif type(suspectedDate)==datetime:
objDate=suspectedDate
if objDate.tzinfo is None:
objDate=pytz.timezone(localTimeZone).localize(objDate)
objDate=utc.normalize(objDate)
else:
objDate=utc.normalize(objDate)
if objDate is not None:
objDate=utc.normalize(objDate)
return objDate
def main():
if options.output=='syslog':
logger.addHandler(SysLogHandler(address=(options.sysloghostname,options.syslogport)))
else:
sh=logging.StreamHandler(sys.stderr)
sh.setFormatter(formatter)
logger.addHandler(sh)
logger.debug('started')
logger.debug(options)
try:
es=pyes.ES((list('{0}'.format(s) for s in options.esservers)))
#capture the time we start running so next time we catch any files created while we run.
2014-06-17 02:58:10 +04:00
lastrun=str(options.lastrun.isoformat())
today=datetime.utcnow().isoformat()+'+00:00'
url = options.mighost+'/api/v1/search?type=command&status=done&report=complianceitems&limit=1000000&before='+today+'&after='+lastrun
2014-06-16 21:54:11 +04:00
url = url.replace('+00:00', 'Z')
r = requests.get(url,
cert=(options.sslclientcert, options.sslclientkey),
verify=options.sslcacert)
2014-06-17 20:01:24 +04:00
if r.status_code == 200:
migjson=r.json()
logger.debug(url)
if migjson['collection']['items'][0]['data'][0]['value']:
migjson['collection']['items'][0]['data'][0]['value'] = migjson['collection']['items'][0]['data'][0]['value'][::-1]
2014-06-17 20:01:24 +04:00
for complianceitem in migjson['collection']['items'][0]['data'][0]['value']:
# historical data - index the new logs
res=es.index(index='complianceitems',doc_type='history',doc=complianceitem)
# last_known_state data - update the logs
# _id = md5('complianceitems'+check.ref+check.test.value+target)
docid=hashlib.md5('complianceitems'+complianceitem['check']['ref']+complianceitem['check']['test']['value']+complianceitem['target']).hexdigest()
res=es.index(index='complianceitems',id=docid,doc_type='last_known_state',doc=complianceitem)
else:
logger.debug("No compliance item available, terminating")
setConfig('lastrun',today,options.configfile)
2014-06-16 21:54:11 +04:00
except Exception as e:
logger.error("Unhandled exception, terminating: %r"%e)
def initConfig():
options.output=getConfig('output','stdout',options.configfile) #output our log to stdout or syslog
options.sysloghostname=getConfig('sysloghostname','localhost',options.configfile) #syslog hostname
options.syslogport=getConfig('syslogport',514,options.configfile) #syslog port
options.defaultTimeZone=getConfig('defaulttimezone','US/Pacific',options.configfile)
# Z = UTC, -07:00 = PDT
options.mighost=getConfig('mighost','https://localhost',options.configfile)
options.sslclientcert=getConfig('sslclientcert','mig.crt',options.configfile)
options.sslclientkey=getConfig('sslclientkey','mig.key',options.configfile)
options.sslcacert = getConfig('sslcacert', '', options.configfile)
2014-06-16 21:54:11 +04:00
options.esservers=list(getConfig('esservers','http://localhost:9200',options.configfile).split(','))
2014-06-17 02:58:10 +04:00
options.lastrun=toUTC(getConfig('lastrun',toUTC(datetime.now()-timedelta(minutes=15)),options.configfile))
2014-06-16 21:54:11 +04:00
if __name__ == '__main__':
parser=OptionParser()
parser.add_option("-c", dest='configfile' , default=sys.argv[0].replace('.py', '.conf'), help="configuration file to use")
(options,args) = parser.parse_args()
initConfig()
main()