Initial Commit

This commit is contained in:
0x221E
2026-01-28 13:54:07 +01:00
commit 87bf1eca38
4 changed files with 140 additions and 0 deletions

26
iris_scoring_config.py Normal file
View File

@@ -0,0 +1,26 @@
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"
}
]