A simplified frontend for searching & reporting to MISP Supports both a WebUI and a REST API
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