mirror of
https://github.com/nmap/nmap.git
synced 2025-12-14 11:49:01 +00:00
12 lines
407 B
Lua
12 lines
407 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
|
|
|