mispex v0.1.5 MISP.Galaxy View Source

List and retrieve MISP Galaxy information

Link to this section Summary

Functions

Get a single galaxy with the provided ID

List all galaxies from MISP

Link to this section Types

Link to this type

t() View Source
t() :: %MISP.Galaxy{
  GalaxyCluster: [MISP.GalaxyCluster.t()],
  description: String.t() | nil,
  id: String.t() | nil,
  name: String.t() | nil,
  type: String.t() | nil,
  uuid: String.t() | nil,
  version: String.t() | nil
}

Link to this section Functions

Get a single galaxy with the provided ID

iex> MISP.Galaxy.get(34)
%MISP.Galaxy{
  name: "Mobile Attack - Malware",
  id: "34",
  namespace: "mitre-attack"
}

List all galaxies from MISP

iex> MISP.Galaxy.list()
[
  %MISP.Galaxy{
    name: "Mobile Attack - Malware",
    id: "34",
    namespace: "mitre-attack"
  }
]