mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
47 lines
1.3 KiB
Lua
47 lines
1.3 KiB
Lua
--
|
|
-- (C) 2019-24 - ntop.org
|
|
--
|
|
|
|
local checks = require("checks")
|
|
local alerts_api = require "alerts_api"
|
|
local alert_consts = require("alert_consts")
|
|
local flow_alert_keys = require "flow_alert_keys"
|
|
|
|
local UNEXPECTED_SCRIPTS_ENABLED_CACHE_KEY = "ntopng.cache.checks.unexpected_scripts_enabled"
|
|
|
|
-- #################################################################
|
|
|
|
local script = {
|
|
-- Script category
|
|
category = checks.check_categories.security,
|
|
|
|
-- This module is disabled by default
|
|
default_enabled = false,
|
|
|
|
-- This script is only for alerts generation
|
|
alert_id = flow_alert_keys.flow_alert_unexpected_dhcp_server,
|
|
|
|
-- Specify the default value whe clicking on the "Reset Default" button
|
|
default_value = {
|
|
items = {},
|
|
},
|
|
|
|
gui = {
|
|
i18n_title = "flow_checks.unexpected_dhcp_title",
|
|
i18n_description = "flow_checks.unexpected_dhcp_description",
|
|
}
|
|
}
|
|
|
|
-- #################################################################
|
|
|
|
function script.onEnable(hook, hook_config)
|
|
-- Set a flag to indicate to the notifications system that an unexpected script
|
|
-- has been enabled
|
|
if isEmptyString(ntop.getCache(UNEXPECTED_SCRIPTS_ENABLED_CACHE_KEY)) then
|
|
ntop.setCache(UNEXPECTED_SCRIPTS_ENABLED_CACHE_KEY, "1")
|
|
end
|
|
end
|
|
|
|
-- #################################################################
|
|
|
|
return script
|