Skip to content

Commit

Permalink
Merge branch 'master' of github.com:CIRCL/PyMISP
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafiot committed Oct 25, 2016
2 parents 2c2bfe2 + 0de3f74 commit 1d8af6e
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions examples/add_named_attribute.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from pymisp import PyMISP
from keys import misp_url, misp_key
import argparse

# For python2 & 3 compat, a bit dirty, but it seems to be the least bad one
try:
input = raw_input
except NameError:
pass


def init(url, key):
return PyMISP(url, key, True, 'json', debug=True)

if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Create an event on MISP.')
parser.add_argument("-e", "--event", type=int, help="The id of the event to update.")
parser.add_argument("-t", "--type", help="The type of the added attribute")
parser.add_argument("-v", "--value", help="The value of the attribute")
args = parser.parse_args()

misp = init(misp_url, misp_key)

event = misp.get_event(args.event)
event = misp.add_named_attribute(event, args.type, args.value)
print(event)

0 comments on commit 1d8af6e

Please sign in to comment.