mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39:33 +00:00
42 lines
990 B
Lua
42 lines
990 B
Lua
--
|
|
-- (C) 2013-18 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
require "lua_utils"
|
|
local json = require "dkjson"
|
|
|
|
local function send_error(error_type)
|
|
local msg = "Generic error"
|
|
if error_type == "not_found" then
|
|
msg = "Host not found"
|
|
elseif error_type == "not_granted" then
|
|
msg = "Request not granted. Another request may be in progress. Retry later."
|
|
end
|
|
|
|
sendHTTPContentTypeHeader('application/json')
|
|
print(json.encode({error = msg}))
|
|
end
|
|
|
|
interface.select(ifname)
|
|
|
|
local granted = true -- interface.requestLiveTraffic(host)
|
|
|
|
if not granted then
|
|
send_error("not_granted")
|
|
else
|
|
local host = _GET["host"]
|
|
local fname = ifname
|
|
|
|
if(host ~= nil) then
|
|
fname = fname .. "_"..host
|
|
end
|
|
|
|
fname = fname .."_live.pcap"
|
|
|
|
sendHTTPContentTypeHeader('application/vnd.tcpdump.pcap', 'attachment; filename="'..fname..'"')
|
|
|
|
interface.liveCapture(host)
|
|
end
|