irczombietest.nse

来自「Ubuntu packages of security software。 相」· NSE 代码 · 共 35 行

NSE
35
字号
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 + =
减小字号Ctrl + -
显示快捷键?