Fixes inconsistent naming in ntopng (#6716)

This commit is contained in:
MatteoBiscosi 2022-10-17 12:52:47 +02:00
parent e7d3eb19c6
commit 4728baed14
16 changed files with 586 additions and 46 deletions

View file

@ -0,0 +1,30 @@
--
-- (C) 2019-22 - ntop.org
--
local checks = require("checks")
local flow_alert_keys = require "flow_alert_keys"
-- #################################################################
local script = {
-- Script category
category = checks.check_categories.security,
-- This script is only for alerts generation
alert_id = flow_alert_keys.flow_alert_ndpi_possible_exploit,
default_enabled = true,
default_value = {
},
gui = {
i18n_title = "flow_risk.ndpi_possible_exploit",
i18n_description = "flow_risk.ndpi_possible_exploit_descr",
}
}
-- #################################################################
return script