mswindowsshell.nse

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

NSE
33
字号
id = "MS Windows shell"description = "If port 8888 is open and it echos a specific string then we\might have found an open MSWindows shell."author = "Diman Todorov <diman.todorov@gmail.com>"license = "See nmaps COPYING for licence"categories = {"backdoor"}require "shortport"portrule = shortport.port_or_service(8888, "auth")action = function(host, port)	local status = 0	local result = ""	local client_ident = nmap.new_socket()	client_ident:connect(host.ip, port.number)	status, result = client_ident:receive_bytes(4096)	client_ident:close()	if string.match(result, "Microsoft Windows") then		return "Possible open windows shell found."	endend

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?