mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
17 lines
No EOL
388 B
Lua
17 lines
No EOL
388 B
Lua
--
|
|
-- (C) 2013-23 - ntop.org
|
|
--
|
|
-- **********************************************************
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
package.path = dirs.installdir .. "/scripts/lua/pro/modules/?.lua;" .. package.path
|
|
|
|
local cve_utils = {}
|
|
|
|
function cve_utils.getCVEscore(cve_name)
|
|
return '0'
|
|
end
|
|
|
|
|
|
return cve_utils |