27 lines
636 B
Python
27 lines
636 B
Python
from iris_interface.IrisModuleInterface import IrisModuleTypes
|
|
|
|
module_name = "IrisScoring"
|
|
|
|
module_description = "Module to check through abuseipdb, virustotal and more"
|
|
|
|
interface_version = 1.1
|
|
|
|
module_version = 1.0
|
|
|
|
module_type = IrisModuleTypes.module_processor
|
|
|
|
pipeline_support = False
|
|
|
|
pipeline_info = {}
|
|
|
|
module_configuration = [
|
|
{
|
|
"param_name": "log_received_hook",
|
|
"param_human_name": "Log received hook",
|
|
"param_description": "Logs a message upon hook receiving if set to true. Otherwise do nothing.",
|
|
"default": True,
|
|
"mandatory": True,
|
|
"type": "bool"
|
|
}
|
|
]
|