Skip to content

Codehardt/go-misp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

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)
}

About

Golang implementation of MISP API client

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages