Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 336 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 336 Bytes

go-misp

Query events and attributes from MISP with this Golang implementation.

Example

mispClient, err := misp.New(&http.Client{/*...*/}, "https://<your-misp>/", "<auth key>")
if err != nil {
    panic(err)
}
events, err := mispClient.SearchEvents(nil, nil, "", "", "", "", false)
if err != nil {
    panic(err)
}