Updated scan detection code (work in progress)

This commit is contained in:
Luca Deri 2022-02-21 10:39:29 +01:00
parent 269e9da142
commit c430f9d6e6
2 changed files with 8 additions and 21 deletions

View file

@ -1,62 +0,0 @@
--
-- (C) 2019-22 - ntop.org
--
local alerts_api = require("alerts_api")
local alert_consts = require("alert_consts")
local checks = require("checks")
local script = {
packet_interface_only = false,
-- Script category
category = checks.check_categories.security,
-- This module is disabled by default
default_enabled = false,
default_value = {
operator = "gt",
threshold = 32,
},
-- See below
hooks = {},
-- Allow user script configuration from the GUI
gui = {
i18n_title = "entity_thresholds.scan_detection_title",
i18n_description = "entity_thresholds.scan_detection_description",
-- The input builder to use to draw the gui
input_builder = "threshold_cross",
-- Specific parameters of this input builder
i18n_field_unit = checks.field_units.flows,
-- max allowed threshold value
field_max = 65535,
-- min allowed threshold value
field_min = 1,
-- threshold check operator. "gt" for ">", "lt" or "<"
field_operator = "gt";
}
}
-- #################################################################
-- Defines an hook which is executed every minute
function script.hooks.min(params)
local value = params.entity_info["hits.scan_detected"] or 0
local victim = nil
if value ~= 0 then
victim = params.alert_entity.entity_val
end
-- Check if the configured threshold is crossed by the value and possibly trigger an alert
alerts_api.checkThresholdAlert(params, alert_consts.alert_types.host_alert_scan_detected, value, nil, victim)
end
-- #################################################################
return script