mispex v0.1.6 MISP.Galaxy View Source
List and retrieve MISP Galaxy information
Link to this section Summary
Link to this section Types
Link to this section Functions
Link to this function
decoder() View Source
Link to this function
get(id) View Source
Get a single galaxy with the provided ID
iex> MISP.Galaxy.get(34)
%MISP.Galaxy{
name: "Mobile Attack - Malware",
id: "34",
namespace: "mitre-attack"
}
Link to this function
list() View Source
List all galaxies from MISP
iex> MISP.Galaxy.list()
[
%MISP.Galaxy{
name: "Mobile Attack - Malware",
id: "34",
namespace: "mitre-attack"
}
]