Server : Apache/2.4.18 (Ubuntu) System : Linux canvaswebdesign 3.13.0-71-generic #114-Ubuntu SMP Tue Dec 1 02:34:22 UTC 2015 x86_64 User : oppastar ( 1041) PHP Version : 7.0.33-0ubuntu0.16.04.15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Directory : /usr/share/nmap/scripts/ |
Upload File : |
local shortport = require "shortport" local json = require "json" local http = require "http" local nmap = require "nmap" description = [[Detects the Docker service version.]] --- -- @output -- PORT STATE SERVICE VERSION -- 2375/tcp open docker Docker 1.1.2 author = "Claudio Criscione" license = "Same as Nmap--See https://nmap.org/book/man-legal.html" categories = {"version"} portrule = shortport.version_port_or_service({2375, 2376}, {"docker", "docker-s"}, "tcp") action = function(host, port) local http_response = http.get(host, port, "/version") if not http_response or not http_response.status or http_response.status ~= 200 or not http_response.body then return end local ok_json, response = json.parse(http_response.body) if ok_json and response["Version"] and response["GitCommit"] then ---Detected port.version.name = response["Version"] port.version.product = "Docker" nmap.set_port_version(host, port) return end return end