mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-01 00:19:33 +00:00
117 lines
3.2 KiB
Lua
117 lines
3.2 KiB
Lua
--
|
|
-- (C) 2019-21 - ntop.org
|
|
--
|
|
|
|
-- ##############################################
|
|
|
|
local flow_alert_keys = require "flow_alert_keys"
|
|
-- Import the classes library.
|
|
local classes = require "classes"
|
|
-- Make sure to import the Superclass!
|
|
local alert = require "alert"
|
|
local json = require "dkjson"
|
|
|
|
-- ##############################################
|
|
|
|
local alert_lateral_movement = classes.class(alert)
|
|
|
|
-- ##############################################
|
|
|
|
alert_lateral_movement.meta = {
|
|
alert_key = flow_alert_keys.flow_alert_lateral_movement,
|
|
i18n_title = "alerts_dashboard.lateral_movement",
|
|
icon = "fas fa-fw fa-arrows-alt-h",
|
|
}
|
|
|
|
-- ##############################################
|
|
|
|
-- @brief Prepare an alert table used to generate the alert
|
|
-- @return A table with the alert built
|
|
function alert_lateral_movement:init()
|
|
-- Call the parent constructor
|
|
self.super:init()
|
|
end
|
|
|
|
-- ##############################################
|
|
|
|
local function getMapUrl(flow, ifid, map, page)
|
|
local href = '/lua/pro/enterprise/' .. map .. '.lua?'
|
|
|
|
if flow["host"] then
|
|
href = href .. 'host=' .. flow["host"] .. "&"
|
|
end
|
|
|
|
if flow["l7proto"] then
|
|
href = href .. 'l7proto=' .. flow["l7proto"] .. "&"
|
|
end
|
|
|
|
if flow["host_pool_id"] then
|
|
href = href .. 'host_pool_id=' .. flow["host_pool_id"] .. "&"
|
|
end
|
|
|
|
if flow["vlan"] then
|
|
href = href .. 'vlan=' .. flow["vlan"] .. "&"
|
|
end
|
|
|
|
if flow["unicast_only"] then
|
|
href = href .. 'unicast_only=' .. flow["unicast_only"] .. "&"
|
|
end
|
|
|
|
if flow["first_seen"] then
|
|
href = href .. 'first_seen=' .. flow["first_seen"] .. "&"
|
|
end
|
|
|
|
if page then
|
|
href = href .. 'page='.. page .. '&'
|
|
end
|
|
|
|
if ifid then
|
|
href = href .. 'ifid=' .. ifid
|
|
end
|
|
|
|
return href
|
|
end
|
|
|
|
|
|
-- #######################################################
|
|
|
|
-- @brief Format an alert into a human-readable string
|
|
-- @param ifid The integer interface id of the generated alert
|
|
-- @param alert The alert description table, including alert data such as the generating entity, timestamp, granularity, type
|
|
-- @param alert_type_params Table `alert_type_params` as built in the `:init` method
|
|
-- @return A human-readable string
|
|
function alert_lateral_movement.format(ifid, alert, alert_type_params)
|
|
-- Extracting info field
|
|
local info = ""
|
|
local href = ""
|
|
local flow_infos = {
|
|
host = alert["cli_ip"],
|
|
l7proto = tonumber(alert["l7_master_proto"]),
|
|
vlan = alert["vlan_id"]
|
|
}
|
|
|
|
if flow_infos["l7proto"] == 0 then
|
|
flow_infos["l7proto"] = tonumber(alert["l7_proto"])
|
|
end
|
|
|
|
if alert.json then
|
|
info = json.decode(alert["json"])
|
|
if not isEmptyString(info["info"]) then
|
|
info = "[" .. info["info"] .. "]"
|
|
else
|
|
info = ""
|
|
end
|
|
end
|
|
|
|
flow_infos["l7proto"] = interface.getnDPIProtoName(flow_infos["l7proto"])
|
|
|
|
if ntop.isAdministrator() then
|
|
href = '<a href="' .. getMapUrl(flow_infos, interface.getId(), 'service_map', 'graph') .. '"><i class="fas fa-lg fa-concierge-bell"></i></a>'
|
|
end
|
|
|
|
return(i18n("alerts_dashboard.lateral_movement_descr", { info = info, href = href }))
|
|
end
|
|
|
|
-- #######################################################
|
|
|
|
return alert_lateral_movement
|