Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 755 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 755 Bytes

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