mirror of
https://github.com/nmap/nmap.git
synced 2026-01-27 08:39:02 +00:00
16 lines
246 B
Lua
16 lines
246 B
Lua
description = ""
|
|
categories = {}
|
|
|
|
prerule = function() return true end
|
|
|
|
action = function()
|
|
local s, status, data
|
|
|
|
s = nmap.new_socket()
|
|
s:bind("255.255.255.255", 67)
|
|
s:setup("ipv4", "udp")
|
|
status, data = s:receive()
|
|
|
|
return data
|
|
end
|