Skip to content

Scanning Engine v2 - Module - MQTT Info

Overview

Targeting

Configuration

Only the publicly-available configuration keys that can be set in a job's module invocations will be described below. Additional configuration keys may exist, but not be shown here because they are restricted to specific users or because they are permanently set as a static value. If no keys have (required) after their names then invocations of this module need not contain a config key.

Named Keys

connect-timeout

Timeout for each connection, in seconds.

  • Type: float
  • Default: 90.0

debug

Run module with a debugging configuration.

  • Type: boolean

ssl

Connect using SSL/TLS.

  • Type: boolean

Schemas

The schema for the body object of all results generated with .task.module_name equal to mqttinfo can be found here. The schema for results is available both in standalone and bundled form.

Examples

These are examples of the .body object for results with .task.module_name equal to mqttinfo.

Live Host

This example was generated with a live host on the internet.

{
  "v4": {
    "supported": true,
    "anonymous": true,
    "publish_sys": true,
    "filter_sys": false,
    "subscribe_all": true,
    "invalid_topics": false,
    "invalid_utf8_topic": true,
    "qo_s1": true,
    "qo_s2": true,
    "qo_s3_response": false
  },
  "v5": {
    "supported": true,
    "anonymous": false,
    "publish_sys": false,
    "filter_sys": true,
    "subscribe_all": false,
    "invalid_topics": false,
    "invalid_utf8_topic": false,
    "qo_s1": false,
    "qo_s2": false,
    "qo_s3_response": false
  },
  "type_guessed": "mosquitto"
}

Changelog

  • YYYY-MM-DD: Initial public release of documentation.