Skip to content

MISP/misp-modules

Repository files navigation

MISP modules

Build statusCoverage Status codecov

MISP modules are autonomous modules that can be used to extend MISP for new services such as expansion, import, export and workflow action.

MISP modules can be also installed and used without MISP as a standalone tool accessible via a convenient web interface.

The modules are written in Python 3 following a simple API interface. The objective is to ease the extensions of MISP functionalities without modifying core components. The API is available via a simple REST API which is independent from MISP installation or configuration and can be used with other tools.

For more information: Extending MISP with Python modules slides from MISP training.

Installation

Installation instructions can be found in the installation documentation.

How to add your own MISP modules?

Developing a MISP module yourself is fairly easy. Start with a template or existing module and continue from there.
More information can be found in the contribute section of the documentation.

Documentation

In order to provide documentation about some modules that require specific input / output / configuration, the documentation contains detailed information about the general purpose, requirements, features, input and ouput of each of these modules:

  • *description - quick description of the general purpose of the module, as the one given by the moduleinfo
  • requirements - special libraries needed to make the module work
  • features - description of the way to use the module, with the required MISP features to make the module give the intended result
  • references - link(s) giving additional information about the format concerned in the module
  • input - description of the format of data used in input
  • output - description of the format given as the result of the module execution

OpenAPI and API explorer

When the service is running you can discover the available endpoints in a machine-readable way via /openapi.json. An interactive Swagger UI that consumes the same specification is available at /openapi. The specification is generated during service startup, so restart misp-modules after adding or removing modules to refresh what those endpoints expose.

Licenses

For further Information see the license file.

List of MISP modules

Expansion Modules

Export Modules

Import Modules

  • ANYRUN Sandbox Import - A module designed to retrieve an analysis report from the ANY.RUN Sandbox by its unique ID and extract results (such as verdict, malware tags, and IOCs), converting them into MISP attributes within your event.
  • PDNS COF Importer - Passive DNS Common Output Format (COF) MISP importer
  • CSV Import - Module to import MISP attributes from a csv file.
  • Cuckoo Sandbox Import - Module to import Cuckoo JSON.
  • Email Import - Email import module for MISP
  • GoAML Import - Module to import MISP objects about financial transactions from GoAML files.
  • Import Blueprint - Generic blueprint to be copy-pasted to quickly boostrap creation of import module.
  • Joe Sandbox Import - A module to import data from a Joe Sandbox analysis json report.
  • Lastline Import - Deprecation notice: this module will be deprecated by December 2021, please use vmware_nsx module. Module to import and parse reports from Lastline analysis links.
  • MISP JSON Import - Module to import MISP JSON format for merging MISP events.
  • OCR Import - Optical Character Recognition (OCR) module for MISP.
  • OpenIOC Import - Module to import OpenIOC packages.
  • TAXII 2.1 Import - Import content from a TAXII 2.1 server
  • CSV Test Import - Simple CSV import tool with mapable columns
  • ThreadAnalyzer Sandbox Import - Module to import ThreatAnalyzer archive.zip / analysis.json files.
  • URL Import - Simple URL import tool with Faup
  • VMRay API Import - Module to import VMRay (VTI) results.
  • VMRay Summary JSON Import - Import a VMRay Summary JSON report.

Action Modules

  • Mattermost - Simplistic module to send message to a Mattermost channel.
  • Nextcloud talk - Simplistic module to send a message to a Nextcloud talk conversation.
  • Slack - Simplistic module to send messages to a Slack channel.
  • Test action - This module is merely a test, always returning true. Triggers on event publishing.