PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` 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 -- -- @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 http://nmap.org/book/man-legal.html" categories = {"discovery", "safe"} -- -- Version 0.1 -- -- Created 11/09/2011 - v0.1 - created by Patrik Karlsson -- portrule = shortport.port_or_service(8333, "bitcoin", "tcp" ) action = function(host, port) local bcoin = bitcoin.Helper:new(host, port, { timeout = 20000 }) local status = bcoin:connect() if ( not(status) ) then return "\n ERROR: Failed to connect to server" end local status, ver = bcoin:exchVersion() if ( not(status) ) then return "\n ERROR: Failed to extract version information" end local status, nodes = bcoin:getNodes() if ( not(status) ) then return "\n ERROR: Failed to extract address information" end bcoin:close() local response = tab.new(2) tab.addrow(response, "ip", "timestamp") for _, node in ipairs(nodes.addresses or {}) do if ( target.ALLOW_NEW_TARGETS ) then target.add(node.address.host) end tab.addrow(response, ("%s:%d"):format(node.address.host, node.address.port), os.date("%x %X", node.ts)) end if ( #response > 1 ) then return stdnse.format_output(true, tab.dump(response) ) end end