發表文章

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

bitcoin-getaddr.nse 說明

透過詢問   Bitcoin server 取得 Bitcoin node 內文: local os = require "os" local shortport = require "shortport" local stdnse = require "stdnse" local tab = require "tab" local target = require "target" local bitcoin = stdnse.silent_require "bitcoin" description = [[ Queries a Bitcoin server for a list of known Bitcoin nodes ]] --- -- @usage -- nmap -p 8333 --script bitcoin-getaddr <ip> -- -- @output -- PORT     STATE SERVICE -- 8333/tcp open  unknown -- | bitcoin-getaddr: -- |   ip                    timestamp -- |   10.10.10.10:8333      11/09/11 17:38:00 -- |   10.10.10.11:8333      11/09/11 17:42:39 -- |   10.10.10.12:8333      11/09/11 19:34:07 -- |   10.10.10.13:8333      11/09/11 17:37:45 -- |_  10.10.10.14:8333      11/09/11 17:37:12 author = "Patrik Karlsson" license = "Same as Nmap--See https://nmap.org/book/man-legal.html" categories = {"discovery", "s

bacnet-info.nse 說明

查詢 BACnet通訊協定下設備一些基本資訊 官方說明: https://nmap.org/nsedoc/scripts/bacnet-info.html BACnet通訊協定:   https://zh.wikipedia.org/wiki/BACnet 內容: local bin = require "bin" local nmap = require "nmap" local shortport = require "shortport" local stdnse = require "stdnse" local string = require "string" local unicode = require "unicode" description = [[ Discovers and enumerates BACNet Devices collects device information based off standard requests. In some cases, devices may not strictly follow the specifications, or may comply with older versions of the specifications, and will result in a BACNET error response. Presence of this error positively identifies the device as a BACNet device, but no enumeration is possible. Note: Requests and responses are via UDP 47808, ensure scanner will receive UDP 47808 source and destination responses. http://digitalbond.com ]] --- -- @usage -- nmap --script bacnet-info -sU -p 4

backorifice-info 說明

偵測  BackOrifice service 訊息 官方:  https://nmap.org/nsedoc/scripts/backorifice-info.html the BackOrifice service說明:  https://en.wikipedia.org/wiki/Back_Orifice 內文: local bin = require "bin" local bit = require "bit" local nmap = require "nmap" local shortport = require "shortport" local stdnse = require "stdnse" local string = require "string" local table = require "table" description = [[ Connects to a BackOrifice service and gathers information about the host and the BackOrifice service itself. The extracted host information includes basic system setup, list of running processes, network resources and shares. Information about the service includes enabled port redirections, listening console applications and a list of BackOrifice plugins installed with the service. ]] --- -- @usage -- nmap --script backorifice-info <target> --script-args backorifice-info.password=<password> --