⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 irczombietest.nse

📁 Overview是Linux,FreeBSD,UNIX,Windows下的网络扫描和嗅探工 具包,其基本功能有三个,一是探测一组主机是否在线 其次是扫描 主机端口,嗅探所提供的网络服务 还可以推断主机
💻 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 + -