發表文章

目前顯示的是 2月, 2017的文章

ajp-auth.nse 說明

針對  AJP service (Apache JServ Protocol)  方面認證去查詢 官方:   https://nmap.org/nsedoc/scripts/ajp-auth.html 內容: local ajp = require "ajp" local http = require "http" local shortport = require "shortport" local stdnse = require "stdnse" local table = require "table" description = [[ Retrieves the authentication scheme and realm of an AJP service (Apache JServ Protocol) that requires authentication. ]] --- -- @usage -- nmap -p 8009 <ip> --script ajp-auth [--script-args ajp-auth.path=/login] -- -- @output -- PORT     STATE SERVICE -- 8009/tcp open  ajp13 -- | ajp-auth: -- |_  Digest opaque=GPui3SvCGBoHrRMMzSsgaYBV qop=auth nonce=1336063830612:935b5b389696b0f67b9193e19f47e037 realm=example.org -- -- @args ajp-auth.path  Define the request path -- author = "Patrik Karlsson" license = "Same as Nmap--See https://nmap.org/book/man-legal.html" categories = {"default", "auth",