description = [[trigger nse bug]]

author = ""
license = ""
categories = {"default"}

require('nmap')

hostrule = function(host)
  return true
end

action = function(host)
  local sock

  sock = nmap.new_socket()
  sock:pcap_open(host.interface, 104, false, "ip and ip6")
  sock:close()
  return false
end

