mirror of
https://github.com/nmap/nmap.git
synced 2025-12-07 13:11:28 +00:00
hadoop-datanode-info.nse hadoop-jobtracker-info.nse hadoop-namenode-info.nse hadoop-secondary-namenode-info.nse hadoop-tasktracker-info.nse hbase-master-info.nse hbase-region-info.nse
88 lines
4.0 KiB
Lua
88 lines
4.0 KiB
Lua
description = [[
|
|
Gets information from an Apache HBase region server HTTP status page.
|
|
|
|
Information gathered:
|
|
* HBase version
|
|
* HBase compile date
|
|
* A bunch of metrics about the state of the region server
|
|
* Zookeeper quorum server
|
|
|
|
For more information about Hbase, see:
|
|
* http://hbase.apache.org/
|
|
* http://wiki.apache.org/hadoop/Hbase
|
|
]]
|
|
|
|
---
|
|
-- @usage
|
|
-- nmap --script hbase-region-info -p 60030 host
|
|
--
|
|
-- @output
|
|
-- PORT STATE SERVICE REASON
|
|
-- 60030/tcp open hbase-region syn-ack
|
|
-- | hbase-region-info:
|
|
-- | Hbase Version: 0.90.1
|
|
-- | Hbase Compiled: Wed May 11 22:33:44 PDT 2011, bob
|
|
-- | Metrics requests=0, regions=0, stores=0, storefiles=0, storefileIndexSize=0, memstoreSize=0,
|
|
-- | compactionQueueSize=0, flushQueueSize=0, usedHeap=0, maxHeap=0, blockCacheSize=0,
|
|
-- | blockCacheFree=0, blockCacheCount=0, blockCacheHitCount=0, blockCacheMissCount=0,
|
|
-- | blockCacheEvictedCount=0, blockCacheHitRatio=0, blockCacheHitCachingRatio=0
|
|
-- |_ Zookeeper Quorum: zookeeper.example.com:2181
|
|
---
|
|
|
|
|
|
author = "john.r.bond@gmail.com"
|
|
license = "Simplified (2-clause) BSD license--See http://nmap.org/svn/docs/licenses/BSD-simplified"
|
|
categories = {"default", "discovery", "safe"}
|
|
|
|
require ("shortport")
|
|
require ("http")
|
|
require ("target")
|
|
|
|
portrule = shortport.port_or_service ({60030}, "hbase-region", {"tcp"})
|
|
|
|
action = function( host, port )
|
|
|
|
local result = {}
|
|
local region_servers = {}
|
|
local uri = "/regionserver.jsp"
|
|
stdnse.print_debug(1, ("%s:HTTP GET %s:%s%s"):format(SCRIPT_NAME, host.targetname or host.ip, port.number, uri))
|
|
local response = http.get( host.targetname or host.ip, port.number, uri )
|
|
stdnse.print_debug(1, ("%s: Status %s"):format(SCRIPT_NAME,response['status-line'] or "No Response"))
|
|
if response['status-line'] and response['status-line']:match("200%s+OK") and response['body'] then
|
|
local body = response['body']:gsub("%%","%%%%")
|
|
stdnse.print_debug(2, ("%s: Body %s\n"):format(SCRIPT_NAME,body))
|
|
port.version.name = "hbase-region"
|
|
port.version.product = "Apache Hadoop Hbase"
|
|
if body:match("HBase%s+Version</td><td>([^][<]+)") then
|
|
local version = body:match("HBase%s+Version</td><td>([^][<]+)"):gsub("%s+", " ")
|
|
stdnse.print_debug(1, ("%s:Hbase Version %s"):format(SCRIPT_NAME,version))
|
|
table.insert(result, ("Hbase Version: %s"):format(version))
|
|
port.version.version = version
|
|
end
|
|
if body:match("HBase%s+Compiled</td><td>([^][<]+)") then
|
|
local compiled = body:match("HBase%s+Compiled</td><td>([^][<]+)"):gsub("%s+", " ")
|
|
stdnse.print_debug(1, ("%s: Hbase Compiled %s"):format(SCRIPT_NAME,compiled))
|
|
table.insert(result, ("Hbase Compiled: %s"):format(compiled))
|
|
end
|
|
if body:match("Metrics</td><td>([^][<]+)") then
|
|
local metrics = body:match("Metrics</td><td>([^][<]+)"):gsub("%s+", " ")
|
|
stdnse.print_debug(1, ("%s: Metrics %s"):format(SCRIPT_NAME,metrics))
|
|
table.insert(result, ("Metrics %s"):format(metrics))
|
|
end
|
|
if body:match("Quorum</td><td>([^][<]+)") then
|
|
local quorum = body:match("Quorum</td><td>([^][<]+)"):gsub("%s+", " ")
|
|
stdnse.print_debug(1, ("%s: Zookeeper Quorum %s"):format(SCRIPT_NAME,quorum))
|
|
table.insert(result, ("Zookeeper Quorum: %s"):format(quorum))
|
|
if target.ALLOW_NEW_TARGETS then
|
|
if quorum:match("([%w%.]+)") then
|
|
local newtarget = quorum:match("([%w%.]+)")
|
|
stdnse.print_debug(1, ("%s: Added target: %s"):format(SCRIPT_NAME, newtarget))
|
|
local status,err = target.add(newtarget)
|
|
end
|
|
end
|
|
end
|
|
nmap.set_port_version(host, port, "hardmatched")
|
|
return stdnse.format_output(true, result)
|
|
end
|
|
end
|