diff options
author | Luca Deri <deri@ntop.org> | 2021-06-17 23:52:01 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2021-06-17 23:52:01 +0200 |
commit | 0afc8ace3d2da3ff67c13cf3e95f722bdc981170 (patch) | |
tree | 84812ddc76741dcd71884ac87461d227d87239b8 /wireshark | |
parent | 0b9b6a683da9d68fa66154fb1479a43f8893ddaf (diff) |
Added nDPI Score report
Diffstat (limited to 'wireshark')
-rw-r--r-- | wireshark/ndpi.lua | 100 |
1 files changed, 95 insertions, 5 deletions
diff --git a/wireshark/ndpi.lua b/wireshark/ndpi.lua index 195f7dae2..f0fef9dd2 100644 --- a/wireshark/ndpi.lua +++ b/wireshark/ndpi.lua @@ -140,6 +140,8 @@ local tot_http_ua_flows = 0 local flows = {} local tot_flows = 0 +local flows_with_risks = {} + local dhcp_fingerprints = {} local min_nw_client_RRT = {} @@ -383,6 +385,9 @@ function ndpi_proto.init() -- Flows flows = {} tot_flows = 0 + + -- Risks + flows_with_risks = {} -- DHCP dhcp_fingerprints = {} @@ -651,6 +656,55 @@ end -- ############################################### +function risk_dissector(tvb, pinfo, tree) + if(pinfo.dst_port ~= 0) then + local rev_key = getstring(pinfo.dst)..":"..getstring(pinfo.dst_port).."-"..getstring(pinfo.src)..":"..getstring(pinfo.src_port) + local k + + if(flows[rev_key] ~= nil) then + flows[rev_key][2] = flows[rev_key][2] + pinfo.len + k = rev_key + else + local key = getstring(pinfo.src)..":"..getstring(pinfo.src_port).."-"..getstring(pinfo.dst)..":"..getstring(pinfo.dst_port) + + k = key + if(flows[key] == nil) then + flows[key] = { pinfo.len, 0 } -- src -> dst / dst -> src + tot_flows = tot_flows + 1 + else + flows[key][1] = flows[key][1] + pinfo.len + end + end + + --k = pinfo.curr_proto..","..k + + local bytes = flows[k][1]+flows[k][2] + local row + + -- Prometheus + -- row = "wireshark {metric=\"bytes\", flow=\""..k.."\"} ".. bytes .. " ".. (tonumber(pinfo.abs_ts)*10000).."00000" + + -- Influx + row = "wireshark,flow="..k.." bytes=".. pinfo.len .. " ".. (tonumber(pinfo.abs_ts)*10000).."00000" + file:write(row.."\n") + + row = "wireshark,ndpi="..ndpi.protocol_name.." bytes=".. pinfo.len .. " ".. (tonumber(pinfo.abs_ts)*10000).."00000" + file:write(row.."\n") + + row = "wireshark,host="..getstring(pinfo.src).." sent=".. pinfo.len .. " ".. (tonumber(pinfo.abs_ts)*10000).."00000" + file:write(row.."\n") + + row = "wireshark,host="..getstring(pinfo.dst).." rcvd=".. pinfo.len .. " ".. (tonumber(pinfo.abs_ts)*10000).."00000" + file:write(row.."\n") + + -- print(row) + + file:flush() + end +end + +-- ############################################### + function dhcp_dissector(tvb, pinfo, tree) local req_item = f_dhcp_request_item() @@ -974,7 +1028,6 @@ function ndpi_proto.dissector(tvb, pinfo, tree) local len = tvb:len() local name = "" local flow_risk_tree - for i=16,31 do name = name .. string.char(tonumber(elems[i], 16)) @@ -985,13 +1038,25 @@ function ndpi_proto.dissector(tvb, pinfo, tree) flow_risk_tree = ndpi_subtree:add(ndpi_fds.flow_risk, tvb(len-30, 8)) if (flow_risk ~= 0) then - for i=0,63 do + local rev_key = getstring(pinfo.dst)..":"..getstring(pinfo.dst_port).." - "..getstring(pinfo.src)..":"..getstring(pinfo.src_port) + + if(flows_with_risks[rev_key] == nil) then + local key = getstring(pinfo.src)..":"..getstring(pinfo.src_port).." - "..getstring(pinfo.dst)..":"..getstring(pinfo.dst_port) + + if(flows_with_risks[key] == nil) then + flows_with_risks[key] = flow_score + end + end + + for i=0,63 do --If you want to visualize only proto fields of detected risks, enable the next "if" block --if hasbit(flow_risk, bit(i)) then - if flow_risks[i] ~= nil then + + if flow_risks[i] ~= nil then flow_risk_tree:add(flow_risks[i], flow_risk) - --end - end + --end + end + end end @@ -1080,6 +1145,7 @@ function ndpi_proto.dissector(tvb, pinfo, tree) if(dump_timeseries) then timeseries_dissector(tvb, pinfo, tree) end + mac_dissector(tvb, pinfo, tree) arp_dissector(tvb, pinfo, tree) vlan_dissector(tvb, pinfo, tree) @@ -1094,6 +1160,29 @@ register_postdissector(ndpi_proto) -- ############################################### +local function flow_score_dialog_menu() + local win = TextWindow.new("nDPI Flow Risks"); + local label = "" + local i + + for k,v in pairsByValues(flows_with_risks, asc) do + if(label == "") then + label = "Flows with positive score value:\n" + end + + label = label .. "- " .. k .." [score: ".. v .."]\n" + end + + if(label == "") then + label = "No flows with score > 0 found" + end + + win:set(label) + win:add_button("Clear", function() win:clear() end) +end + +-- ############################################### + local function ndpi_dialog_menu() local win = TextWindow.new("nDPI Protocol Statistics"); local label = "" @@ -1569,4 +1658,5 @@ register_menu("ntop/Latency/Application", appl_rtt_dialog_menu, MENU_TOOLS_UNSO if(compute_flows_stats) then register_menu("ntop/nDPI", ndpi_dialog_menu, MENU_TOOLS_UNSORTED) + register_menu("ntop/nDPI Flow Score", flow_score_dialog_menu, MENU_TOOLS_UNSORTED) end |