EVOLUTION-MANAGER
Edit File: flow_risk_utils.lua
-- -- (C) 2017-24 - ntop.org -- local flow_risk_utils = {} local clock_start = os.clock() -- ############################################## function flow_risk_utils.get_documentation_link(risk_id) local url = string.format("https://www.ntop.org/guides/nDPI/flow_risks.html#risk-%.3u", risk_id) local link = string.format('<a href="%s" target="_blank"><i class="fas fa-lg fa-question-circle"></i></a>', url) return link end function flow_risk_utils.get_remediation_documentation_link(risk_id) local url = string.format("https://www.ntop.org/guides/ntopng/remediations/flow_risks.html#risk-%.3u", risk_id) local link = string.format('<a href="%s" target="_blank"><i class="fa-solid fa-lg fa-briefcase-medical"></i></a>', url) return link end -- ############################################## --@brief Returns a table with all available risk strings, keyed by risk id. function flow_risk_utils.get_risks_info() local res = {} for risk_id = 1,127 do local risk_str = ntop.getRiskStr(risk_id) if risk_id == tonumber(risk_str) then break end -- Use string keys to avoid tricking lua into thinking it is processing an array res[tostring(risk_id)] = {label = risk_str, id = risk_id} end return res end -- ############################################## if(trace_script_duration ~= nil) then io.write(debug.getinfo(1,'S').source .." executed in ".. (os.clock()-clock_start)*1000 .. " ms\n") end return flow_risk_utils