mirror of
https://github.com/nmap/nmap.git
synced 2025-12-24 00:19:01 +00:00
12 lines
404 B
Lua
12 lines
404 B
Lua
--chargen.lua - implements the RFC 864 CHARGEN service which basically spams
|
|
--the remote user until he decides to close the connection.
|
|
--
|
|
--CAVEAT: at the moment you need --lua-extensions to make sure this script will
|
|
--die once the connection gets closed. Otherwise, you will get a nasty infinite
|
|
--loop that will waste your CPU power until you kill the process.
|
|
|
|
while true do
|
|
print "chargen"
|
|
end
|
|
|