1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-25 08:59:01 +00:00

Fix interfaces bug in broadcast-listener

Reported here: http://seclists.org/nmap-dev/2012/q3/672
This commit is contained in:
dmiller
2012-08-28 23:07:28 +00:00
parent c5d3bf247b
commit c71478d91f

View File

@@ -205,7 +205,7 @@ end
getInterfaces = function(link, up)
if( not(nmap.list_interfaces) ) then return end
local interfaces, err = nmap.list_interfaces()
local result
local result = {}
if ( not(err) ) then
for _, iface in ipairs(interfaces) do
if ( iface.link == link and
@@ -214,7 +214,6 @@ getInterfaces = function(link, up)
-- exclude ipv6 addresses for now
if ( not(iface.address:match(":")) ) then
result = result or {}
table.insert(result, { name = iface.device,
address = iface.address } )
end