📄 irczombietest.nse
字号:
id = "IRC zombie"description = "If port 113 responds before we ask it then something is fishy.\Usually this means that the host is an irc zombie."author = "Diman Todorov <diman.todorov@gmail.com>"license = "See nmaps COPYING for licence"categories = {"malware"}require "shortport"portrule = shortport.port_or_service(113, "auth")action = function(host, port) local status = 0 local owner = "" local client_ident = nmap.new_socket() client_ident:connect(host.ip, port.number) status, owner = client_ident:receive_lines(1) client_ident:close() if owner == "TIMEOUT" then return end return ownerend
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -