Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add "Publish Event" #12

Closed
nbareil opened this issue Nov 27, 2017 · 0 comments
Closed

Add "Publish Event" #12

nbareil opened this issue Nov 27, 2017 · 0 comments

Comments

@nbareil
Copy link
Contributor

nbareil commented Nov 27, 2017

API is not official but works fine: see MISP/MISP#1379 (comment)

#! /usr/bin/python

import os
import argparse
import requests

parser = argparse.ArgumentParser()
parser.add_argument("EVENT_ID", help="Event ID", type=int)
args = parser.parse_args()

h = {
    'Authorization': open(os.path.join(os.environ['HOME'], '.misp_api_key')).read().strip(),
    'Content-Type': 'application/json',
    'Accept': 'application/json',
}

r = requests.post('https://misp.dev/events/publish/%d' % (args.EVENT_ID),
        headers=h)
print r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant