Sender Sketch Update Module#

Module ID: sender_sketch_update Module Namespace: morpheus_spear_phishing

This module updates the sender sketch for spear phishing detection.

Configurable Parameters#

Parameter

Type

Description

Example Value

Default Value

sender_sketch_config

dictionary

Configuration for sender sketch

Refer Below

None

sender_sketch_config#

Key

Type

Description

Example Value

Default Value

endpoint

string

The endpoint configuration

"http://my-endpoint.com"

None

required_intents

list

List of required intents

["intent1", "intent2"]

[]

sender_sketch_tables_config

dictionary

Configuration for sender sketch tables

{"table1": "config1"}

{}

raise_on_failure

boolean

If true, raise exceptions on failures

false

false

Example JSON Configuration#

{
  "sender_sketch_config": {
    "endpoint": "http://my-endpoint.com",
    "required_intents": ["intent1", "intent2"],
    "sender_sketch_tables_config": {"table1": "config1"},
    "raise_on_failure": false
  }
}