From 1b9c70028fbb7feb29f89cfa393592e49bbf8e93 Mon Sep 17 00:00:00 2001 From: Philippe Langlois Date: Mon, 26 Mar 2018 18:17:10 +0200 Subject: [PATCH] Example of specifying special attribute type in your search: here yara attribute --- examples/search_attributes_yara.py | 40 ++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100755 examples/search_attributes_yara.py diff --git a/examples/search_attributes_yara.py b/examples/search_attributes_yara.py new file mode 100755 index 0000000..e45d5e0 --- /dev/null +++ b/examples/search_attributes_yara.py @@ -0,0 +1,40 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# Example of specifying special attribute type in your search: here yara attribute + +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, out=None, custom_type_attribute="yara"): + controller='attributes' + result = m.search(controller, type_attribute = custom_type_attribute) + if quiet: + for e in result['response']: + print('{}{}{}\n'.format(url, '/events/view/', e['Event']['id'])) + elif out is None: + print(json.dumps(result['response'])) + else: + with open(out, 'w') as f: + f.write(json.dumps(result['response'])) + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='Get all the events matching a value for a given param.') + 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) + + search(misp, args.quiet, misp_url, args.output)