1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-07 21:21:31 +00:00
Files
nmap/ncat/scripts/discard.lua
2013-08-29 13:34:23 +00:00

12 lines
156 B
Lua

--This script reads data from the standard input and discards them.
while true do
data = io.stdin:read(512)
if data == nil then
break
end
end