From 9aec74b01cf72e09c4049da1f40f226fc71de08a Mon Sep 17 00:00:00 2001 From: Nick Driver Date: Thu, 9 Mar 2017 15:57:15 -0500 Subject: [PATCH] Example using the search() function Accepts specific parameters from search() instead of just using search_all(). --- examples/search.py | 51 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 examples/search.py diff --git a/examples/search.py b/examples/search.py new file mode 100644 index 0000000..a895f6d --- /dev/null +++ b/examples/search.py @@ -0,0 +1,51 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from pymisp import PyMISP +from keys import misp_url, misp_key,misp_verifycert +import argparse +import os +import json + + +def init(url, key): + return PyMISP(url, key, misp_verifycert, 'json') + + +def search(m, quiet, url, controller, out=None, **kwargs): + result = m.search(controller, **kwargs) + if quiet: + for e in result['response']: + print('{}{}{}\n'.format(url, '/events/view/', e['Event']['id'])) + elif out is None: + for e in result['response']: + print(json.dumps(e) + '\n') + else: + with open(out, 'w') as f: + for e in result['response']: + f.write(json.dumps(e) + '\n') + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Get all the events matching a value for a given param.') + parser.add_argument("-p", "--param", required=True, help="Parameter to search (e.g. category, org, etc.)") + parser.add_argument("-s", "--search", required=True, help="String to search.") + parser.add_argument("-a", "--attributes", action='store_true', help="Search attributes instead of events") + parser.add_argument("-q", "--quiet", action='store_true', help="Only display URLs to MISP") + parser.add_argument("-o", "--output", help="Output file") + + args = parser.parse_args() + + if args.output is not None and os.path.exists(args.output): + print('Output file already exists, abort.') + exit(0) + + misp = init(misp_url, misp_key) + kwargs = {args.param: args.search} + + if args.attributes: + controller='attributes' + else: + controller='events' + + search(misp, args.quiet, misp_url, controller, args.output, **kwargs)