Skip to content

SUNET/flask-ioc-lookup

Repository files navigation

flask-ioc-lookup

A simplified frontend for searching & reporting to MISP Supports both a WebUI and a REST API

Screenshot IOC-Lookup

REST API howto guide

Perform a search:

% curl -s -H "Accept: application/json" \
    -H "Content-Type: application/json" \
    -H "API-TOKEN: <API-key>" -X POST \
    --data '{"search": "example.com"}' \
      https://<ENDPOINT.FQDN>/ 

Report an IOC:

curl -s -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "API-TOKEN: <API-key>" -X POST \
  --data '{"ioc": "test.test", "tlp": "tlp:green", "reference": "a comment"}' \
    https://<ENDPOINT.FQDN>/report