mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 23:49:33 +00:00
Added the ability to upload a pcap file for analysis
This commit is contained in:
parent
932254f3f3
commit
fa51a2b4e8
10 changed files with 295 additions and 93 deletions
|
|
@ -42,6 +42,11 @@ local function validateChoiceByKeys(defaults, v)
|
|||
end
|
||||
end
|
||||
|
||||
-- Placeholder for pcap file validation
|
||||
local function validatePcap(defaults, v)
|
||||
return true
|
||||
end
|
||||
|
||||
-- Searches into the value of the table
|
||||
-- Optional key can be used to access fields of the array element
|
||||
local function validateChoice(defaults, v, key)
|
||||
|
|
@ -199,6 +204,14 @@ local function validateLuaScriptPath(p)
|
|||
end
|
||||
http_lint.validateLuaScriptPath = validateLuaScriptPath
|
||||
|
||||
local function validateUploadedFile(p)
|
||||
local os_utils = require("os_utils")
|
||||
local dirs = ntop.getDirs()
|
||||
|
||||
return(starts(p, dirs.workingdir .. os_utils.getPathDivider() .. "tmp" .. os_utils.getPathDivider() .. "upload"))
|
||||
end
|
||||
http_lint.validateLuaScriptPath = validateLuaScriptPath
|
||||
|
||||
local function validateUnchecked(p)
|
||||
-- This function does not perform any validation, so only the C side validation takes place.
|
||||
-- In particular, single quotes are allowed so they must be handled explicitly by the programmer in
|
||||
|
|
@ -2237,6 +2250,10 @@ local known_parameters = {
|
|||
["payload"] = { jsonCleanup, validateJSON },
|
||||
["JSON"] = { jsonCleanup, validateJSON },
|
||||
|
||||
-- POST pcap
|
||||
["pcap"] = validatePcap,
|
||||
["uploaded_file"] = validateUploadedFile,
|
||||
|
||||
-- See https://github.com/ntop/ntopng/issues/4275
|
||||
["csrf"] = validateSingleWord,
|
||||
|
||||
|
|
@ -2246,7 +2263,7 @@ local known_parameters = {
|
|||
["order"] = validateSortOrder,
|
||||
["length"] = validateNumber,
|
||||
["draw"] = validateNumber,
|
||||
["visible_columns"] = validateEmptyOr(validateListOfTypeInline(validateSingleWord))
|
||||
["visible_columns"] = validateEmptyOr(validateListOfTypeInline(validateSingleWord))
|
||||
}
|
||||
|
||||
-- A special parameter is formed by a prefix, followed by a variable suffix
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue