1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00
Files
nmap/ncat/scripts/discard.lua
2013-07-02 16:56:03 +00:00

12 lines
166 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